boost/libs/parameter/test/literate/template-keywords1.cpp
2021-10-05 21:37:46 +02:00

18 lines
289 B
C++

#include <boost/parameter.hpp>
namespace boost { namespace python {
namespace tag {
struct class_type; // keyword tag type
}
template <typename T>
struct class_type
: boost::parameter::template_keyword<boost::python::tag::class_type,T>
{
};
}}