]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/parameter/test/literate/static-member-functions0.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / parameter / test / literate / static-member-functions0.cpp
1
2 #include <boost/parameter.hpp>
3 #include <iostream>
4 using namespace boost::parameter;
5 BOOST_PARAMETER_NAME(arg1)
6
7 struct somebody
8 {
9 BOOST_PARAMETER_MEMBER_FUNCTION(
10 (void), static f, tag, (optional (arg1,(int),0)))
11 {
12 std::cout << arg1 << std::endl;
13 }
14 };