fwd_decl.hpp 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // (C) Copyright Gennadiy Rozental 2001.
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org/libs/test for the library home page.
  6. //
  7. //!@file
  8. //!@brief contains forward eclarations for Boost.Test data types
  9. // ***************************************************************************
  10. #ifndef BOOST_TEST_FWD_DECL_HPP_011605GER
  11. #define BOOST_TEST_FWD_DECL_HPP_011605GER
  12. namespace boost {
  13. class execution_monitor;
  14. class execution_exception;
  15. namespace unit_test {
  16. class test_unit;
  17. class test_case;
  18. class test_suite;
  19. class master_test_suite_t;
  20. class test_tree_visitor;
  21. class test_observer;
  22. class test_unit_fixture;
  23. class global_fixture;
  24. // singletons
  25. class unit_test_monitor_t;
  26. class unit_test_log_t;
  27. class unit_test_log_formatter;
  28. struct log_entry_data;
  29. struct log_checkpoint_data;
  30. class lazy_ostream;
  31. } // namespace unit_test
  32. } // namespace boost
  33. #endif // BOOST_TEST_FWD_DECL_HPP_011605GER