mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +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;
|
|
}
|
|
}
|