1 #ifndef BOOST_METAPARSE_V1_START_HPP 2 #define BOOST_METAPARSE_V1_START_HPP 3 4 // Copyright Abel Sinkovics (abel@sinkovics.hu) 2013. 5 // Distributed under the Boost Software License, Version 1.0. 6 // (See accompanying file LICENSE_1_0.txt or copy at 7 // http://www.boost.org/LICENSE_1_0.txt) 8 9 #include <boost/metaparse/v1/source_position.hpp> 10 11 #include <boost/mpl/int.hpp> 12 #include <boost/mpl/char.hpp> 13 14 namespace boost 15 { 16 namespace metaparse 17 { 18 namespace v1 19 { 20 typedef 21 source_position< 22 boost::mpl::int_<1>, 23 boost::mpl::int_<1>, 24 boost::mpl::char_<0> 25 > 26 start; 27 } 28 } 29 } 30 31 #endif 32 33