proto_fwd.hpp 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886
  1. ///////////////////////////////////////////////////////////////////////////////
  2. /// \file proto_fwd.hpp
  3. /// Forward declarations of all of proto's public types and functions.
  4. //
  5. // Copyright 2008 Eric Niebler. Distributed under the Boost
  6. // Software License, Version 1.0. (See accompanying file
  7. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  8. #ifndef BOOST_PROTO_FWD_HPP_EAN_04_01_2005
  9. #define BOOST_PROTO_FWD_HPP_EAN_04_01_2005
  10. #include <cstddef>
  11. #include <climits>
  12. #include <boost/config.hpp>
  13. #include <boost/detail/workaround.hpp>
  14. #include <boost/preprocessor/cat.hpp>
  15. #include <boost/preprocessor/arithmetic/inc.hpp>
  16. #include <boost/preprocessor/punctuation/comma.hpp>
  17. #include <boost/preprocessor/repetition/enum_params.hpp>
  18. #include <boost/preprocessor/repetition/enum_params_with_a_default.hpp>
  19. #include <boost/preprocessor/repetition/enum_trailing_binary_params.hpp>
  20. #include <boost/preprocessor/repetition/repeat_from_to.hpp>
  21. #include <boost/ref.hpp>
  22. #include <boost/mpl/long.hpp>
  23. #include <boost/type_traits/remove_const.hpp>
  24. #include <boost/type_traits/remove_reference.hpp>
  25. #include <boost/mpl/aux_/config/ttp.hpp>
  26. #include <boost/utility/result_of.hpp>
  27. #ifndef BOOST_PROTO_MAX_ARITY
  28. # define BOOST_PROTO_MAX_ARITY 10
  29. #endif
  30. #ifndef BOOST_PROTO_MAX_LOGICAL_ARITY
  31. # define BOOST_PROTO_MAX_LOGICAL_ARITY 10
  32. #endif
  33. #ifndef BOOST_PROTO_MAX_FUNCTION_CALL_ARITY
  34. # define BOOST_PROTO_MAX_FUNCTION_CALL_ARITY BOOST_PROTO_MAX_ARITY
  35. #endif
  36. #if BOOST_PROTO_MAX_ARITY < 3
  37. # error BOOST_PROTO_MAX_ARITY must be at least 3
  38. #endif
  39. #if BOOST_PROTO_MAX_FUNCTION_CALL_ARITY > BOOST_PROTO_MAX_ARITY
  40. # error BOOST_PROTO_MAX_FUNCTION_CALL_ARITY cannot be larger than BOOST_PROTO_MAX_ARITY
  41. #endif
  42. #ifndef BOOST_PROTO_DONT_USE_PREPROCESSED_FILES
  43. #if 10 < BOOST_PROTO_MAX_ARITY || \
  44. 10 < BOOST_PROTO_MAX_LOGICAL_ARITY || \
  45. 10 < BOOST_PROTO_MAX_FUNCTION_CALL_ARITY
  46. #define BOOST_PROTO_DONT_USE_PREPROCESSED_FILES
  47. #endif
  48. #endif
  49. #ifndef BOOST_PROTO_BROKEN_CONST_OVERLOADS
  50. # if BOOST_WORKAROUND(__GNUC__, == 3) \
  51. || BOOST_WORKAROUND(__EDG_VERSION__, BOOST_TESTED_AT(310))
  52. # define BOOST_PROTO_BROKEN_CONST_OVERLOADS
  53. # endif
  54. #endif
  55. #ifndef BOOST_PROTO_BROKEN_CONST_QUALIFIED_FUNCTIONS
  56. # if BOOST_WORKAROUND(__GNUC__, == 3) \
  57. || BOOST_WORKAROUND(__EDG_VERSION__, BOOST_TESTED_AT(310))
  58. # define BOOST_PROTO_BROKEN_CONST_QUALIFIED_FUNCTIONS
  59. # endif
  60. #endif
  61. #ifdef BOOST_PROTO_BROKEN_CONST_OVERLOADS
  62. # include <boost/utility/enable_if.hpp>
  63. # include <boost/type_traits/is_const.hpp>
  64. # define BOOST_PROTO_DISABLE_IF_IS_CONST(T)\
  65. , typename boost::disable_if_c<boost::is_const<T>::value, boost::proto::detail::undefined>::type * = 0
  66. #else
  67. # define BOOST_PROTO_DISABLE_IF_IS_CONST(T)
  68. #endif
  69. #ifdef BOOST_PROTO_BROKEN_CONST_QUALIFIED_FUNCTIONS
  70. # include <boost/utility/enable_if.hpp>
  71. # include <boost/type_traits/is_function.hpp>
  72. # define BOOST_PROTO_DISABLE_IF_IS_FUNCTION(T)\
  73. , typename boost::disable_if_c<boost::is_function<T>::value, boost::proto::detail::undefined>::type * = 0
  74. #else
  75. # define BOOST_PROTO_DISABLE_IF_IS_FUNCTION(T)
  76. #endif
  77. #ifndef BOOST_PROTO_BROKEN_PTS
  78. # if BOOST_WORKAROUND(BOOST_MSVC, <= 1400)
  79. # define BOOST_PROTO_BROKEN_PTS
  80. # endif
  81. #endif
  82. #ifdef BOOST_NO_CXX11_DECLTYPE_N3276
  83. # // Proto can only use the decltype-based result_of if N3276 has been
  84. # // implemented by the compiler.
  85. # // See http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2011/n3276.pdf
  86. # ifndef BOOST_PROTO_USE_NORMAL_RESULT_OF
  87. # define BOOST_PROTO_USE_NORMAL_RESULT_OF
  88. # endif
  89. #endif
  90. // Unless compiler support is there, use tr1_result_of instead of
  91. // result_of to avoid the problems addressed by N3276.
  92. #ifdef BOOST_PROTO_USE_NORMAL_RESULT_OF
  93. # define BOOST_PROTO_RESULT_OF boost::result_of
  94. #else
  95. # define BOOST_PROTO_RESULT_OF boost::tr1_result_of
  96. #endif
  97. // If we're using the decltype-based result_of, we need to be a bit
  98. // stricter about the return types of some functions.
  99. #if defined(BOOST_RESULT_OF_USE_DECLTYPE) && defined(BOOST_PROTO_USE_NORMAL_RESULT_OF)
  100. # define BOOST_PROTO_STRICT_RESULT_OF
  101. # define BOOST_PROTO_RETURN_TYPE_STRICT_LOOSE(X, Y) X
  102. #else
  103. # define BOOST_PROTO_RETURN_TYPE_STRICT_LOOSE(X, Y) Y
  104. #endif
  105. #ifdef BOOST_MPL_CFG_EXTENDED_TEMPLATE_PARAMETERS_MATCHING
  106. # define BOOST_PROTO_EXTENDED_TEMPLATE_PARAMETERS_MATCHING
  107. #endif
  108. #if defined(_MSC_VER)
  109. # define BOOST_PROTO_DISABLE_MSVC_C4522 __pragma(warning(disable : 4522)) // 'class' : multiple assignment operators specified
  110. # define BOOST_PROTO_DISABLE_MSVC_C4714 __pragma(warning(disable : 4714)) // function 'xxx' marked as __forceinline not inlined
  111. #else
  112. # define BOOST_PROTO_DISABLE_MSVC_C4522
  113. # define BOOST_PROTO_DISABLE_MSVC_C4714
  114. #endif
  115. namespace boost { namespace proto
  116. {
  117. namespace detail
  118. {
  119. typedef char yes_type;
  120. typedef char (&no_type)[2];
  121. template<int N>
  122. struct sized_type
  123. {
  124. typedef char (&type)[N];
  125. };
  126. struct dont_care;
  127. struct undefined; // leave this undefined
  128. struct not_a_valid_type;
  129. struct private_type_
  130. {
  131. private_type_ operator ,(int) const;
  132. };
  133. template<typename T>
  134. struct uncvref
  135. {
  136. typedef T type;
  137. };
  138. template<typename T>
  139. struct uncvref<T const>
  140. {
  141. typedef T type;
  142. };
  143. template<typename T>
  144. struct uncvref<T &>
  145. {
  146. typedef T type;
  147. };
  148. template<typename T>
  149. struct uncvref<T const &>
  150. {
  151. typedef T type;
  152. };
  153. template<typename T, std::size_t N>
  154. struct uncvref<T const[N]>
  155. {
  156. typedef T type[N];
  157. };
  158. template<typename T, std::size_t N>
  159. struct uncvref<T (&)[N]>
  160. {
  161. typedef T type[N];
  162. };
  163. template<typename T, std::size_t N>
  164. struct uncvref<T const (&)[N]>
  165. {
  166. typedef T type[N];
  167. };
  168. struct ignore
  169. {
  170. ignore()
  171. {}
  172. template<typename T>
  173. ignore(T const &)
  174. {}
  175. };
  176. /// INTERNAL ONLY
  177. ///
  178. #define BOOST_PROTO_UNCVREF(X) \
  179. typename boost::proto::detail::uncvref<X>::type \
  180. /**/
  181. struct _default;
  182. struct not_a_domain;
  183. struct not_a_grammar;
  184. struct not_a_generator;
  185. template<typename T, typename Void = void>
  186. struct is_transform_;
  187. template<typename T, typename Void = void>
  188. struct is_aggregate_;
  189. template<typename Expr>
  190. struct flat_view;
  191. }
  192. typedef detail::ignore const ignore;
  193. namespace argsns_
  194. {
  195. template<typename Arg0>
  196. struct term;
  197. #define M0(Z, N, DATA) \
  198. template<BOOST_PP_ENUM_PARAMS_Z(Z, N, typename Arg)> struct BOOST_PP_CAT(list, N); \
  199. /**/
  200. BOOST_PP_REPEAT_FROM_TO(1, BOOST_PP_INC(BOOST_PROTO_MAX_ARITY), M0, ~)
  201. #undef M0
  202. }
  203. using namespace argsns_;
  204. ///////////////////////////////////////////////////////////////////////////////
  205. // Operator tags
  206. namespace tagns_
  207. {
  208. namespace tag
  209. {
  210. struct terminal;
  211. struct unary_plus;
  212. struct negate;
  213. struct dereference;
  214. struct complement;
  215. struct address_of;
  216. struct logical_not;
  217. struct pre_inc;
  218. struct pre_dec;
  219. struct post_inc;
  220. struct post_dec;
  221. struct shift_left;
  222. struct shift_right;
  223. struct multiplies;
  224. struct divides;
  225. struct modulus;
  226. struct plus;
  227. struct minus;
  228. struct less;
  229. struct greater;
  230. struct less_equal;
  231. struct greater_equal;
  232. struct equal_to;
  233. struct not_equal_to;
  234. struct logical_or;
  235. struct logical_and;
  236. struct bitwise_and;
  237. struct bitwise_or;
  238. struct bitwise_xor;
  239. struct comma;
  240. struct mem_ptr;
  241. struct assign;
  242. struct shift_left_assign;
  243. struct shift_right_assign;
  244. struct multiplies_assign;
  245. struct divides_assign;
  246. struct modulus_assign;
  247. struct plus_assign;
  248. struct minus_assign;
  249. struct bitwise_and_assign;
  250. struct bitwise_or_assign;
  251. struct bitwise_xor_assign;
  252. struct subscript;
  253. struct member;
  254. struct if_else_;
  255. struct function;
  256. // Fusion tags
  257. template<typename Tag, typename Domain> struct proto_expr;
  258. template<typename Tag, typename Domain> struct proto_expr_iterator;
  259. template<typename Tag, typename Domain> struct proto_flat_view;
  260. }
  261. }
  262. using namespace tagns_;
  263. template<typename Expr>
  264. struct tag_of;
  265. ////////////////////////////////////////////////////////////////////////////////////////////////
  266. struct _;
  267. ////////////////////////////////////////////////////////////////////////////////////////////////
  268. struct default_generator;
  269. struct basic_default_generator;
  270. template<template<typename> class Extends>
  271. struct generator;
  272. template<template<typename> class Extends>
  273. struct pod_generator;
  274. struct by_value_generator;
  275. template<typename First, typename Second>
  276. struct compose_generators;
  277. template<typename Generator, typename Void = void>
  278. struct wants_basic_expr;
  279. template<typename Generator>
  280. struct use_basic_expr;
  281. ////////////////////////////////////////////////////////////////////////////////////////////////
  282. namespace domainns_
  283. {
  284. typedef detail::not_a_domain no_super_domain;
  285. template<
  286. typename Generator = default_generator
  287. , typename Grammar = proto::_
  288. , typename Super = no_super_domain
  289. >
  290. struct domain;
  291. struct default_domain;
  292. struct basic_default_domain;
  293. struct deduce_domain;
  294. template<typename Domain, typename Tag, typename Args, bool WantsBasicExpr = wants_basic_expr<typename Domain::proto_generator>::value>
  295. struct base_expr;
  296. }
  297. using namespace domainns_;
  298. ////////////////////////////////////////////////////////////////////////////////////////////////
  299. namespace exprns_
  300. {
  301. template<typename Tag, typename Args, long Arity = Args::arity>
  302. struct basic_expr;
  303. template<typename Tag, typename Args, long Arity = Args::arity>
  304. struct expr;
  305. template<
  306. typename Expr
  307. , typename Derived
  308. , typename Domain = default_domain
  309. , long Arity = Expr::proto_arity_c
  310. >
  311. struct extends;
  312. template<typename This, typename Fun, typename Domain>
  313. struct virtual_member;
  314. struct is_proto_expr;
  315. }
  316. ////////////////////////////////////////////////////////////////////////////////////////////////
  317. using exprns_::expr;
  318. using exprns_::basic_expr;
  319. using exprns_::extends;
  320. using exprns_::is_proto_expr;
  321. template<BOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(BOOST_PROTO_MAX_LOGICAL_ARITY, typename G, void)>
  322. struct or_;
  323. template<BOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(BOOST_PROTO_MAX_LOGICAL_ARITY, typename G, void)>
  324. struct and_;
  325. template<typename Grammar>
  326. struct not_;
  327. template<typename Condition, typename Then = _, typename Else = not_<_> >
  328. struct if_;
  329. template<typename Cases, typename Transform = tag_of<_>()>
  330. struct switch_;
  331. template<typename T>
  332. struct exact;
  333. template<typename T>
  334. struct convertible_to;
  335. template<typename Grammar>
  336. struct vararg;
  337. struct pack;
  338. // Boost bug https://svn.boost.org/trac/boost/ticket/4602
  339. //int const N = INT_MAX;
  340. int const N = (INT_MAX >> 10);
  341. namespace context
  342. {
  343. struct null_context;
  344. template<typename Expr, typename Context, long Arity = Expr::proto_arity_c>
  345. struct null_eval;
  346. struct default_context;
  347. template<typename Expr, typename Context, typename Tag = typename Expr::proto_tag, long Arity = Expr::proto_arity_c>
  348. struct default_eval;
  349. template<typename Derived, typename DefaultCtx = default_context>
  350. struct callable_context;
  351. template<typename Expr, typename Context, long Arity = Expr::proto_arity_c>
  352. struct callable_eval;
  353. }
  354. using context::null_context;
  355. using context::null_eval;
  356. using context::default_context;
  357. using context::default_eval;
  358. using context::callable_context;
  359. using context::callable_eval;
  360. namespace utility
  361. {
  362. template<typename T, typename Domain = default_domain>
  363. struct literal;
  364. }
  365. using utility::literal;
  366. namespace result_of
  367. {
  368. template<typename T, typename Domain = default_domain>
  369. struct as_expr;
  370. template<typename T, typename Domain = default_domain>
  371. struct as_child;
  372. template<typename Expr, typename N = mpl::long_<0> >
  373. struct child;
  374. template<typename Expr, long N>
  375. struct child_c;
  376. template<typename Expr>
  377. struct left;
  378. template<typename Expr>
  379. struct right;
  380. template<typename Expr>
  381. struct deep_copy;
  382. template<typename Expr, typename Context>
  383. struct eval;
  384. template<
  385. typename Tag
  386. , typename DomainOrA0
  387. BOOST_PP_ENUM_TRAILING_BINARY_PARAMS(
  388. BOOST_PROTO_MAX_ARITY
  389. , typename A
  390. , = void BOOST_PP_INTERCEPT
  391. )
  392. , typename Void = void
  393. >
  394. struct make_expr;
  395. template<typename Tag, typename DomainOrSequence, typename SequenceOrVoid = void, typename Void = void>
  396. struct unpack_expr;
  397. template<typename T>
  398. struct as_env;
  399. template<typename Env, typename Tag>
  400. struct has_env_var;
  401. template<typename Env, typename Tag>
  402. struct env_var;
  403. }
  404. template<typename T, typename Void = void>
  405. struct is_expr;
  406. template<typename T, typename Void = void>
  407. struct is_domain;
  408. template<typename SubDomain, typename SuperDomain>
  409. struct is_sub_domain_of;
  410. template<typename T, typename Void = void>
  411. struct is_env;
  412. template<typename Expr>
  413. struct arity_of;
  414. template<typename T, typename Void = void>
  415. struct domain_of;
  416. template<typename Expr, typename Grammar>
  417. struct matches;
  418. // Generic expression metafunctions and
  419. // grammar elements
  420. template<typename Tag, typename Arg>
  421. struct unary_expr;
  422. template<typename Tag, typename Left, typename Right>
  423. struct binary_expr;
  424. template<typename Tag, BOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(BOOST_PROTO_MAX_ARITY, typename A, void)>
  425. struct nary_expr;
  426. // Specific expression metafunctions and
  427. // grammar elements, for convenience
  428. template<typename T> struct terminal;
  429. template<typename T> struct unary_plus;
  430. template<typename T> struct negate;
  431. template<typename T> struct dereference;
  432. template<typename T> struct complement;
  433. template<typename T> struct address_of;
  434. template<typename T> struct logical_not;
  435. template<typename T> struct pre_inc;
  436. template<typename T> struct pre_dec;
  437. template<typename T> struct post_inc;
  438. template<typename T> struct post_dec;
  439. template<typename T, typename U> struct shift_left;
  440. template<typename T, typename U> struct shift_right;
  441. template<typename T, typename U> struct multiplies;
  442. template<typename T, typename U> struct divides;
  443. template<typename T, typename U> struct modulus;
  444. template<typename T, typename U> struct plus;
  445. template<typename T, typename U> struct minus;
  446. template<typename T, typename U> struct less;
  447. template<typename T, typename U> struct greater;
  448. template<typename T, typename U> struct less_equal;
  449. template<typename T, typename U> struct greater_equal;
  450. template<typename T, typename U> struct equal_to;
  451. template<typename T, typename U> struct not_equal_to;
  452. template<typename T, typename U> struct logical_or;
  453. template<typename T, typename U> struct logical_and;
  454. template<typename T, typename U> struct bitwise_and;
  455. template<typename T, typename U> struct bitwise_or;
  456. template<typename T, typename U> struct bitwise_xor;
  457. template<typename T, typename U> struct comma;
  458. template<typename T, typename U> struct mem_ptr;
  459. template<typename T, typename U> struct assign;
  460. template<typename T, typename U> struct shift_left_assign;
  461. template<typename T, typename U> struct shift_right_assign;
  462. template<typename T, typename U> struct multiplies_assign;
  463. template<typename T, typename U> struct divides_assign;
  464. template<typename T, typename U> struct modulus_assign;
  465. template<typename T, typename U> struct plus_assign;
  466. template<typename T, typename U> struct minus_assign;
  467. template<typename T, typename U> struct bitwise_and_assign;
  468. template<typename T, typename U> struct bitwise_or_assign;
  469. template<typename T, typename U> struct bitwise_xor_assign;
  470. template<typename T, typename U> struct subscript;
  471. template<typename T, typename U> struct member;
  472. template<typename T, typename U, typename V> struct if_else_;
  473. template<BOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(BOOST_PROTO_MAX_ARITY, typename A, void)>
  474. struct function;
  475. namespace functional
  476. {
  477. struct left;
  478. struct right;
  479. struct eval;
  480. struct deep_copy;
  481. template<typename Domain = default_domain>
  482. struct as_expr;
  483. template<typename Domain = default_domain>
  484. struct as_child;
  485. template<typename N = mpl::long_<0> >
  486. struct child;
  487. template<long N>
  488. struct child_c;
  489. struct as_env;
  490. template<typename Tag>
  491. struct has_env_var;
  492. template<typename Tag>
  493. struct env_var;
  494. template<typename Tag, typename Domain = deduce_domain>
  495. struct make_expr;
  496. template<typename Tag, typename Domain = deduce_domain>
  497. struct unpack_expr;
  498. typedef make_expr<tag::terminal> make_terminal;
  499. typedef make_expr<tag::unary_plus> make_unary_plus;
  500. typedef make_expr<tag::negate> make_negate;
  501. typedef make_expr<tag::dereference> make_dereference;
  502. typedef make_expr<tag::complement> make_complement;
  503. typedef make_expr<tag::address_of> make_address_of;
  504. typedef make_expr<tag::logical_not> make_logical_not;
  505. typedef make_expr<tag::pre_inc> make_pre_inc;
  506. typedef make_expr<tag::pre_dec> make_pre_dec;
  507. typedef make_expr<tag::post_inc> make_post_inc;
  508. typedef make_expr<tag::post_dec> make_post_dec;
  509. typedef make_expr<tag::shift_left> make_shift_left;
  510. typedef make_expr<tag::shift_right> make_shift_right;
  511. typedef make_expr<tag::multiplies> make_multiplies;
  512. typedef make_expr<tag::divides> make_divides;
  513. typedef make_expr<tag::modulus> make_modulus;
  514. typedef make_expr<tag::plus> make_plus;
  515. typedef make_expr<tag::minus> make_minus;
  516. typedef make_expr<tag::less> make_less;
  517. typedef make_expr<tag::greater> make_greater;
  518. typedef make_expr<tag::less_equal> make_less_equal;
  519. typedef make_expr<tag::greater_equal> make_greater_equal;
  520. typedef make_expr<tag::equal_to> make_equal_to;
  521. typedef make_expr<tag::not_equal_to> make_not_equal_to;
  522. typedef make_expr<tag::logical_or> make_logical_or;
  523. typedef make_expr<tag::logical_and> make_logical_and;
  524. typedef make_expr<tag::bitwise_and> make_bitwise_and;
  525. typedef make_expr<tag::bitwise_or> make_bitwise_or;
  526. typedef make_expr<tag::bitwise_xor> make_bitwise_xor;
  527. typedef make_expr<tag::comma> make_comma;
  528. typedef make_expr<tag::mem_ptr> make_mem_ptr;
  529. typedef make_expr<tag::assign> make_assign;
  530. typedef make_expr<tag::shift_left_assign> make_shift_left_assign;
  531. typedef make_expr<tag::shift_right_assign> make_shift_right_assign;
  532. typedef make_expr<tag::multiplies_assign> make_multiplies_assign;
  533. typedef make_expr<tag::divides_assign> make_divides_assign;
  534. typedef make_expr<tag::modulus_assign> make_modulus_assign;
  535. typedef make_expr<tag::plus_assign> make_plus_assign;
  536. typedef make_expr<tag::minus_assign> make_minus_assign;
  537. typedef make_expr<tag::bitwise_and_assign> make_bitwise_and_assign;
  538. typedef make_expr<tag::bitwise_or_assign> make_bitwise_or_assign;
  539. typedef make_expr<tag::bitwise_xor_assign> make_bitwise_xor_assign;
  540. typedef make_expr<tag::subscript> make_subscript;
  541. typedef make_expr<tag::if_else_> make_if_else;
  542. typedef make_expr<tag::function> make_function;
  543. struct flatten;
  544. struct make_pair;
  545. struct first;
  546. struct second;
  547. struct at;
  548. struct pop_front;
  549. struct push_front;
  550. struct pop_back;
  551. struct push_back;
  552. struct reverse;
  553. }
  554. typedef functional::flatten _flatten;
  555. typedef functional::make_pair _make_pair;
  556. typedef functional::first _first;
  557. typedef functional::second _second;
  558. typedef functional::pop_front _at;
  559. typedef functional::pop_front _pop_front;
  560. typedef functional::push_front _push_front;
  561. typedef functional::pop_back _pop_back;
  562. typedef functional::push_back _push_back;
  563. typedef functional::reverse _reverse;
  564. typedef functional::eval _eval;
  565. struct _deep_copy;
  566. typedef functional::make_expr<tag::terminal> _make_terminal;
  567. typedef functional::make_expr<tag::unary_plus> _make_unary_plus;
  568. typedef functional::make_expr<tag::negate> _make_negate;
  569. typedef functional::make_expr<tag::dereference> _make_dereference;
  570. typedef functional::make_expr<tag::complement> _make_complement;
  571. typedef functional::make_expr<tag::address_of> _make_address_of;
  572. typedef functional::make_expr<tag::logical_not> _make_logical_not;
  573. typedef functional::make_expr<tag::pre_inc> _make_pre_inc;
  574. typedef functional::make_expr<tag::pre_dec> _make_pre_dec;
  575. typedef functional::make_expr<tag::post_inc> _make_post_inc;
  576. typedef functional::make_expr<tag::post_dec> _make_post_dec;
  577. typedef functional::make_expr<tag::shift_left> _make_shift_left;
  578. typedef functional::make_expr<tag::shift_right> _make_shift_right;
  579. typedef functional::make_expr<tag::multiplies> _make_multiplies;
  580. typedef functional::make_expr<tag::divides> _make_divides;
  581. typedef functional::make_expr<tag::modulus> _make_modulus;
  582. typedef functional::make_expr<tag::plus> _make_plus;
  583. typedef functional::make_expr<tag::minus> _make_minus;
  584. typedef functional::make_expr<tag::less> _make_less;
  585. typedef functional::make_expr<tag::greater> _make_greater;
  586. typedef functional::make_expr<tag::less_equal> _make_less_equal;
  587. typedef functional::make_expr<tag::greater_equal> _make_greater_equal;
  588. typedef functional::make_expr<tag::equal_to> _make_equal_to;
  589. typedef functional::make_expr<tag::not_equal_to> _make_not_equal_to;
  590. typedef functional::make_expr<tag::logical_or> _make_logical_or;
  591. typedef functional::make_expr<tag::logical_and> _make_logical_and;
  592. typedef functional::make_expr<tag::bitwise_and> _make_bitwise_and;
  593. typedef functional::make_expr<tag::bitwise_or> _make_bitwise_or;
  594. typedef functional::make_expr<tag::bitwise_xor> _make_bitwise_xor;
  595. typedef functional::make_expr<tag::comma> _make_comma;
  596. typedef functional::make_expr<tag::mem_ptr> _make_mem_ptr;
  597. typedef functional::make_expr<tag::assign> _make_assign;
  598. typedef functional::make_expr<tag::shift_left_assign> _make_shift_left_assign;
  599. typedef functional::make_expr<tag::shift_right_assign> _make_shift_right_assign;
  600. typedef functional::make_expr<tag::multiplies_assign> _make_multiplies_assign;
  601. typedef functional::make_expr<tag::divides_assign> _make_divides_assign;
  602. typedef functional::make_expr<tag::modulus_assign> _make_modulus_assign;
  603. typedef functional::make_expr<tag::plus_assign> _make_plus_assign;
  604. typedef functional::make_expr<tag::minus_assign> _make_minus_assign;
  605. typedef functional::make_expr<tag::bitwise_and_assign> _make_bitwise_and_assign;
  606. typedef functional::make_expr<tag::bitwise_or_assign> _make_bitwise_or_assign;
  607. typedef functional::make_expr<tag::bitwise_xor_assign> _make_bitwise_xor_assign;
  608. typedef functional::make_expr<tag::subscript> _make_subscript;
  609. typedef functional::make_expr<tag::if_else_> _make_if_else;
  610. typedef functional::make_expr<tag::function> _make_function;
  611. template<typename T>
  612. struct is_callable;
  613. template<typename T>
  614. struct is_transform;
  615. template<typename T>
  616. struct is_aggregate;
  617. #define BOOST_PROTO_UNEXPR() typedef int proto_is_expr_;
  618. #define BOOST_PROTO_CALLABLE() typedef void proto_is_callable_;
  619. #define BOOST_PROTO_AGGREGATE() typedef void proto_is_aggregate_;
  620. #define BOOST_PROTO_USE_BASIC_EXPR() typedef void proto_use_basic_expr_;
  621. struct callable
  622. {
  623. BOOST_PROTO_CALLABLE()
  624. };
  625. namespace envns_
  626. {
  627. struct key_not_found;
  628. struct empty_env;
  629. typedef int empty_state;
  630. template<typename Tag, typename Value, typename Base = empty_env>
  631. struct env;
  632. struct data_type;
  633. struct transforms_type;
  634. }
  635. using envns_::key_not_found;
  636. using envns_::empty_env;
  637. using envns_::empty_state;
  638. using envns_::env;
  639. using envns_::data_type;
  640. using envns_::transforms_type;
  641. struct external_transform;
  642. template<typename PrimitiveTransform = void, typename X = void>
  643. struct transform;
  644. template<typename Grammar, typename Fun = Grammar>
  645. struct when;
  646. template<typename Fun>
  647. struct otherwise;
  648. template<typename Fun>
  649. struct call;
  650. template<typename Fun>
  651. struct make;
  652. template<typename PrimitiveTransform>
  653. struct protect;
  654. template<typename T>
  655. struct noinvoke;
  656. template<typename Fun>
  657. struct lazy;
  658. template<typename Sequence, typename State, typename Fun>
  659. struct fold;
  660. template<typename Sequence, typename State, typename Fun>
  661. struct reverse_fold;
  662. // Q: can we replace fold_tree with fold<flatten(_), state, fun> ?
  663. // A: once segmented Fusion works well.
  664. template<typename Sequence, typename State, typename Fun>
  665. struct fold_tree;
  666. template<typename Sequence, typename State, typename Fun>
  667. struct reverse_fold_tree;
  668. template<typename Grammar, typename Domain = deduce_domain>
  669. struct pass_through;
  670. template<typename Grammar = detail::_default>
  671. struct _default;
  672. struct _expr;
  673. struct _state;
  674. struct _data;
  675. struct _value;
  676. struct _void;
  677. template<typename T, T I>
  678. struct integral_c;
  679. template<char I>
  680. struct char_;
  681. template<int I>
  682. struct int_;
  683. template<long I>
  684. struct long_;
  685. template<std::size_t I>
  686. struct size_t;
  687. template<int I>
  688. struct _child_c;
  689. typedef _child_c<0> _child0;
  690. typedef _child_c<1> _child1;
  691. typedef _child0 _child;
  692. typedef _child0 _left;
  693. typedef _child1 _right;
  694. // _child2, _child3, _child4, ...
  695. #define M0(Z, N, DATA) typedef _child_c<N> BOOST_PP_CAT(_child, N);
  696. BOOST_PP_REPEAT_FROM_TO(
  697. 2
  698. , BOOST_PP_DEC(BOOST_PROTO_MAX_ARITY)
  699. , M0
  700. , ~
  701. )
  702. #undef M0
  703. struct _byref;
  704. struct _byval;
  705. template<typename Tag>
  706. struct _env_var;
  707. struct _env;
  708. template<typename T>
  709. struct is_extension;
  710. namespace exops = exprns_;
  711. }} // namespace boost::proto
  712. #endif