#ifndef PAR_FUN_HPP_INCLUDED #define PAR_FUN_HPP_INCLUDED #include #include #include #include #include #include #include namespace lib { BOOST_PARAMETER_NAME(name) BOOST_PARAMETER_NAME(index) BOOST_PARAMETER_FUNCTION( (void), f, tag, (required (name,(std::string))) ) { std::cout << name << std::endl; } BOOST_PARAMETER_FUNCTION( (void), f, tag, (required (index,(int))) ) { std::cout << index << std::endl; } } #endif // PAR_FUN_HPP_INCLUDED