mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
16 lines
329 B
C++
16 lines
329 B
C++
#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
|