catch_debug_console.h 461 B

1234567891011121314151617
  1. /*
  2. * Created by Martin on 29/08/2017.
  3. *
  4. * Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. *
  7. */
  8. #ifndef TWOBLUECUBES_CATCH_DEBUG_CONSOLE_H_INCLUDED
  9. #define TWOBLUECUBES_CATCH_DEBUG_CONSOLE_H_INCLUDED
  10. #include <string>
  11. namespace Catch {
  12. void writeToDebugConsole( std::string const& text );
  13. }
  14. #endif // TWOBLUECUBES_CATCH_DEBUG_CONSOLE_H_INCLUDED