2013-04-19 20:08:32 +02:00
|
|
|
/*
|
2014-02-11 07:32:56 +01:00
|
|
|
* Created by Phil on 10/2/2014.
|
|
|
|
* Copyright 2014 Two Blue Cubes Ltd. All rights reserved.
|
2013-04-19 20:08:32 +02:00
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_TEXT_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_TEXT_H_INCLUDED
|
|
|
|
|
2013-04-20 20:36:40 +02:00
|
|
|
#include "catch_config.hpp"
|
|
|
|
|
2014-02-11 07:32:56 +01:00
|
|
|
#define TBC_TEXT_FORMAT_CONSOLE_WIDTH CATCH_CONFIG_CONSOLE_WIDTH
|
2013-04-19 20:08:32 +02:00
|
|
|
|
2014-02-11 07:32:56 +01:00
|
|
|
#define CLICHE_TBC_TEXT_FORMAT_OUTER_NAMESPACE Catch
|
2014-03-17 19:40:58 +01:00
|
|
|
#include "../external/tbc_text_format.h"
|
2014-02-11 07:32:56 +01:00
|
|
|
#undef CLICHE_TBC_TEXT_FORMAT_OUTER_NAMESPACE
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2014-02-11 07:32:56 +01:00
|
|
|
namespace Catch {
|
|
|
|
using Tbc::Text;
|
|
|
|
using Tbc::TextAttributes;
|
|
|
|
}
|
2013-04-19 20:08:32 +02:00
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_TEXT_H_INCLUDED
|