mirror of
https://github.com/boostorg/parameter.git
synced 2026-01-31 08:22:15 +00:00
12 lines
223 B
C++
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>
|
|
{};
|
|
|
|
}}
|