dynamic.hpp 1.3 KB

123456789101112131415161718192021222324252627282930
  1. /*=============================================================================
  2. Copyright (c) 2002-2003 Joel de Guzman
  3. Copyright (c) 2002 Juan Carlos Arevalo-Baeza
  4. Copyright (c) 2002-2003 Martin Wille
  5. http://spirit.sourceforge.net/
  6. Distributed under the Boost Software License, Version 1.0. (See accompanying
  7. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  8. =============================================================================*/
  9. #ifndef BOOST_SPIRIT_DYNAMIC_HPP
  10. #define BOOST_SPIRIT_DYNAMIC_HPP
  11. #include <boost/spirit/home/classic/version.hpp>
  12. ///////////////////////////////////////////////////////////////////////////////
  13. //
  14. // Master header for Spirit.Dynamic
  15. //
  16. ///////////////////////////////////////////////////////////////////////////////
  17. #include <boost/spirit/home/classic/dynamic/if.hpp>
  18. #include <boost/spirit/home/classic/dynamic/for.hpp>
  19. #include <boost/spirit/home/classic/dynamic/while.hpp>
  20. #include <boost/spirit/home/classic/dynamic/lazy.hpp>
  21. #include <boost/spirit/home/classic/dynamic/stored_rule.hpp>
  22. #include <boost/spirit/home/classic/dynamic/rule_alias.hpp>
  23. #include <boost/spirit/home/classic/dynamic/select.hpp>
  24. #include <boost/spirit/home/classic/dynamic/switch.hpp>
  25. ////////////////////////////////////////////////////////////////////////////////
  26. #endif // BOOST_SPIRIT_DYNAMIC_HPP