• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright 2004, 2006 Vladimir Prus */
2 /* Distributed under the Boost Software License, Version 1.0. */
3 /* (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) */
4 
5 
6 // Seems like Boostbook does like classes outside of namespaces,
7 // and won't generate anything for them.
8 namespace boost {
9 
10 /// A class
11 class A {
12 public:
13     /// A constructor
14     A();
15 };
16 }
17