mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
16 lines
820 B
C++
16 lines
820 B
C++
#ifndef SPROUT_FUNCTIONAL_POLYMORPHIC_ASSIGNMENT_HPP
|
|
#define SPROUT_FUNCTIONAL_POLYMORPHIC_ASSIGNMENT_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/functional/polymorphic/plus_assign.hpp>
|
|
#include <sprout/functional/polymorphic/minus_assign.hpp>
|
|
#include <sprout/functional/polymorphic/multiplies_assign.hpp>
|
|
#include <sprout/functional/polymorphic/divides_assign.hpp>
|
|
#include <sprout/functional/polymorphic/modulus_assign.hpp>
|
|
#include <sprout/functional/polymorphic/bit_and_assign.hpp>
|
|
#include <sprout/functional/polymorphic/bit_or_assign.hpp>
|
|
#include <sprout/functional/polymorphic/bit_xor_assign.hpp>
|
|
#include <sprout/functional/polymorphic/shift_left_assign.hpp>
|
|
#include <sprout/functional/polymorphic/shift_right_assign.hpp>
|
|
|
|
#endif // #ifndef SPROUT_FUNCTIONAL_POLYMORPHIC_ASSIGNMENT_HPP
|