2012-02-25 21:36:22 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 25/2/2012.
|
|
|
|
* Copyright 2012 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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_CONSOLE_COLOUR_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_CONSOLE_COLOUR_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include "catch_common.h"
|
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
namespace Catch {
|
|
|
|
|
2012-02-25 21:36:22 +01:00
|
|
|
struct ConsoleColourImpl;
|
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
class TextColour : NonCopyable {
|
2012-02-25 21:36:22 +01:00
|
|
|
public:
|
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
enum Colours {
|
2012-02-25 21:36:22 +01:00
|
|
|
None,
|
|
|
|
|
|
|
|
FileName,
|
|
|
|
ResultError,
|
|
|
|
ResultSuccess,
|
|
|
|
|
|
|
|
Error,
|
|
|
|
Success,
|
|
|
|
|
|
|
|
OriginalExpression,
|
|
|
|
ReconstructedExpression
|
|
|
|
};
|
|
|
|
|
|
|
|
TextColour( Colours colour = None );
|
|
|
|
void set( Colours colour );
|
|
|
|
~TextColour();
|
|
|
|
|
|
|
|
private:
|
|
|
|
ConsoleColourImpl* m_impl;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace Catch
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_CONSOLE_COLOUR_HPP_INCLUDED
|