]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/quickbook/test/snippets/pass_thru.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / tools / quickbook / test / snippets / pass_thru.cpp
1 //[foo_cpp_copyright
2 /*=============================================================================
3 Copyright (c) 2011 Daniel James
4
5 Use, modification and distribution is subject to the Boost Software
6 License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7 http://www.boost.org/LICENSE_1_0.txt)
8 =============================================================================*/
9 //]
10
11 //[foo_cpp
12 struct Foo{
13
14 Foo()//=;
15 //<-
16 : x( 10 )
17 {}
18 //->
19
20 //<-
21 int x;
22 //->
23 };
24
25 /*=
26 int main()
27 {
28 Foo x;
29 }
30 */
31 //]