mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
add Sprout.Weed ->* Attribute-conversion
This commit is contained in:
parent
fa3851227e
commit
3a968fa5ac
35 changed files with 369 additions and 112 deletions
|
@ -4,6 +4,9 @@
|
|||
#include <sprout/config.hpp>
|
||||
#include <sprout/tuple/tuple.hpp>
|
||||
#include <sprout/utility/forward.hpp>
|
||||
#include <sprout/weed/expr/expr_fwd.hpp>
|
||||
#include <sprout/weed/expr/tag.hpp>
|
||||
#include <sprout/weed/traits/expr/expr_of.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace weed {
|
||||
|
|
16
sprout/weed/expr/expr_fwd.hpp
Normal file
16
sprout/weed/expr/expr_fwd.hpp
Normal file
|
@ -0,0 +1,16 @@
|
|||
#ifndef SPROUT_WEED_EXPR_EXPR_FWD_HPP
|
||||
#define SPROUT_WEED_EXPR_EXPR_FWD_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace weed {
|
||||
//
|
||||
// expr
|
||||
//
|
||||
template<typename Tag, typename... Args>
|
||||
class expr;
|
||||
} // namespace weed
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_WEED_EXPR_EXPR_FWD_HPP
|
|
@ -16,6 +16,7 @@ namespace sprout {
|
|||
struct modulus {};
|
||||
struct minus {};
|
||||
struct bitwise_or {};
|
||||
struct mem_ptr {};
|
||||
} // namespace tag
|
||||
} // namespace weed
|
||||
} // namespace sprout
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue