b3view/Debug.cpp

14 lines
171 B
C++
Raw Permalink Normal View History

2010-04-21 07:48:36 -07:00
#include "Debug.h"
using std::cout;
using std::endl;
using std::ostream;
using std::wcerr;
using std::wcout;
ostream& debug()
2010-04-21 07:48:36 -07:00
{
std::flush(cout);
2010-04-21 07:48:36 -07:00
return cout;
}