mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-15 10:28:34 +05:00
12 lines
180 B
C++
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;
|
||
|
}
|
||
|
}
|