]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/parameter/test/literate/template-keywords1.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / parameter / test / literate / template-keywords1.cpp
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