a.hpp 389 B

12345678910111213141516
  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. // Seems like Boostbook does like classes outside of namespaces,
  5. // and won't generate anything for them.
  6. namespace boost {
  7. /// A class
  8. class A {
  9. public:
  10. /// A constructor
  11. A();
  12. };
  13. }