mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-10 11:51:52 +00:00
3820593bb8
svn-id: r21488
23 lines
581 B
C++
23 lines
581 B
C++
#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__
|