]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/example/pch-multi/include/pch.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / tools / build / example / pch-multi / include / pch.hpp
1 /* Copyright 2006 Vladimir Prus
2
3 Distributed under the Boost Software License, Version 1.0. (See
4 accompanying file LICENSE_1_0.txt or copy at
5 http://www.boost.org/LICENSE_1_0.txt)
6 */
7
8 #ifdef BOOST_BUILD_PCH_ENABLED
9
10 #ifdef FOO2
11 int bar();
12 #endif
13
14 class TestClass {
15 public:
16 TestClass(int, int) {}
17 };
18
19 #endif