netgen/libsrc/interface/printdest.cpp
Joachim Schoeberl 310cb00b13 autotools
2009-01-12 23:40:13 +00:00

12 lines
180 B
C++

#include <mystdlib.h>
#include <myadt.hpp>
namespace netgen
{
//Destination for messages, errors, ...
void Ng_PrintDest(const char * s)
{
(*mycout) << s << flush;
}
}