12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- ///////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////////
- BOOST_WAVE_SUPPORT_VARIADICS_PLACEMARKERS_CONFIG | \
- BOOST_WAVE_SUPPORT_PRAGMA_ONCE_CONFIG | \
- BOOST_WAVE_SUPPORT_MS_EXTENSIONS_CONFIG | \
- BOOST_WAVE_PREPROCESS_PRAGMA_BODY_CONFIG | \
- BOOST_WAVE_USE_STRICT_LEXER_CONFIG | \
- BOOST_WAVE_SUPPORT_IMPORT_KEYWORD_CONFIG \
- ) \
- /**/
- ///////////////////////////////////////////////////////////////////////////////
- namespace boost { namespace wave {
- ///////////////////////////////////////////////////////////////////////////
- // Call this function to test the configuration of the calling application
- // against the configuration of the linked library.
- BOOST_WAVE_DECL bool test_configuration(unsigned int config,
- char const* pragma_keyword, char const* string_type);
- ///////////////////////////////////////////////////////////////////////////////
- }} // namespace boost::wave
- boost::wave::test_configuration( \
- BOOST_WAVE_CONFIG, \
- BOOST_WAVE_PRAGMA_KEYWORD, \
- BOOST_PP_STRINGIZE((BOOST_WAVE_STRINGTYPE)) \
- ) \
- /**/
|