blob: af5bc6b639baba80ca607b24576b4ae9fa5bac34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef __cxxtest__StdioPrinter_h__
#define __cxxtest__StdioPrinter_h__
//
// The StdioPrinter is an StdioFilePrinter which defaults to stdout.
// This should have been called StdOutPrinter or something, but the name
// has been historically used.
//
#include <cxxtest/StdioFilePrinter.h>
namespace CxxTest
{
class StdioPrinter : public StdioFilePrinter
{
public:
StdioPrinter( FILE *o = stdout, const char *preLine = ":", const char *postLine = "" ) :
StdioFilePrinter( o, preLine, postLine ) {}
};
}
#endif // __cxxtest__StdioPrinter_h__
|