1
0
Fork 0
arangodb/3rdParty/boost/1.61.0/libs/parameter/test/literate/template-keywords1.cpp

12 lines
223 B
C++

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