summaryrefslogtreecommitdiff
path: root/tools/build/v2/test/boostbook/a.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/v2/test/boostbook/a.hpp')
-rw-r--r--tools/build/v2/test/boostbook/a.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/build/v2/test/boostbook/a.hpp b/tools/build/v2/test/boostbook/a.hpp
new file mode 100644
index 0000000000..5fab129a9c
--- /dev/null
+++ b/tools/build/v2/test/boostbook/a.hpp
@@ -0,0 +1,16 @@
+/* Copyright 2004, 2006 Vladimir Prus */
+/* Distributed under the Boost Software License, Version 1.0. */
+/* (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) */
+
+
+// Seems like Boostbook does like classes outside of namespaces,
+// and won't generate anything for them.
+namespace boost {
+
+/// A class
+class A {
+public:
+ /// A constructor
+ A();
+};
+}