]> git.proxmox.com Git - ceph.git/blame - 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
CommitLineData
7c673cae
FG
1
2#include <boost/parameter.hpp>
92f5a8d4 3
7c673cae
FG
4namespace boost { namespace python {
5
92f5a8d4
TL
6 namespace tag {
7
8 struct class_type; // keyword tag type
9 }
7c673cae 10
92f5a8d4
TL
11 template <typename T>
12 struct class_type
13 : boost::parameter::template_keyword<boost::python::tag::class_type,T>
14 {
15 };
7c673cae 16}}
92f5a8d4 17