1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- // this must occur after all of the includes and before any code appears
- // suppress warnings about dependent classes not being exported from the dll
- ///////////////////////////////////////////////////////////////////////////////
- namespace boost {
- namespace wave {
- namespace grammars {
- ///////////////////////////////////////////////////////////////////////////////
- //
- // cpp_intlit_grammar_gen template class
- //
- // This template helps separating the compilation of the intlit_grammar
- // class from the compilation of the expression_grammar. This is done
- // to safe compilation time.
- //
- ///////////////////////////////////////////////////////////////////////////////
- template <typename TokenT>
- struct BOOST_WAVE_DECL intlit_grammar_gen {
- static uint_literal_type evaluate(TokenT const &tok, bool &is_unsigned);
- };
- ///////////////////////////////////////////////////////////////////////////////
- //
- // cpp_chlit_grammar_gen template class
- //
- // This template helps separating the compilation of the chlit_grammar
- // class from the compilation of the expression_grammar. This is done
- // to safe compilation time.
- //
- ///////////////////////////////////////////////////////////////////////////////
- template <typename IntegralResult, typename TokenT>
- struct BOOST_WAVE_DECL chlit_grammar_gen {
- static IntegralResult evaluate(TokenT const &tok, value_error& status);
- };
- ///////////////////////////////////////////////////////////////////////////////
- } // namespace grammars
- } // namespace wave
- } // namespace boost
- // the suffix header occurs after all of the code
|