netgen/libsrc/interface/printdest.cpp

12 lines
180 B
C++
Raw Normal View History

2009-01-13 04:40:13 +05:00
#include <mystdlib.h>
#include <myadt.hpp>
namespace netgen
{
//Destination for messages, errors, ...
void Ng_PrintDest(const char * s)
{
(*mycout) << s << flush;
}
}