2013-04-19 19:08:32 +01:00
|
|
|
/*
|
2014-02-11 06:32:56 +00:00
|
|
|
* Created by Phil on 10/2/2014.
|
|
|
|
* Copyright 2014 Two Blue Cubes Ltd. All rights reserved.
|
2013-04-19 19:08:32 +01: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 19:36:40 +01:00
|
|
|
#include "catch_config.hpp"
|
|
|
|
|
2014-02-11 06:32:56 +00:00
|
|
|
#define TBC_TEXT_FORMAT_CONSOLE_WIDTH CATCH_CONFIG_CONSOLE_WIDTH
|
2013-04-19 19:08:32 +01:00
|
|
|
|
2014-02-11 06:32:56 +00:00
|
|
|
#define CLICHE_TBC_TEXT_FORMAT_OUTER_NAMESPACE Catch
|
2014-03-17 18:40:58 +00:00
|
|
|
#include "../external/tbc_text_format.h"
|
2014-02-11 06:32:56 +00:00
|
|
|
#undef CLICHE_TBC_TEXT_FORMAT_OUTER_NAMESPACE
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2014-02-11 06:32:56 +00:00
|
|
|
namespace Catch {
|
|
|
|
using Tbc::Text;
|
|
|
|
using Tbc::TextAttributes;
|
|
|
|
}
|
2013-04-19 19:08:32 +01:00
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_TEXT_H_INCLUDED
|