• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
2 #include <boost/parameter.hpp>
3 
4 namespace boost { namespace python {
5 
6     namespace tag {
7 
8         struct class_type;  // keyword tag type
9     }
10 
11     template <typename T>
12     struct class_type
13       : boost::parameter::template_keyword<boost::python::tag::class_type,T>
14     {
15     };
16 }}
17 
18