template-keywords1.cpp 289 B

1234567891011121314151617
  1. #include <boost/parameter.hpp>
  2. namespace boost { namespace python {
  3. namespace tag {
  4. struct class_type; // keyword tag type
  5. }
  6. template <typename T>
  7. struct class_type
  8. : boost::parameter::template_keyword<boost::python::tag::class_type,T>
  9. {
  10. };
  11. }}