netgen/libsrc/meshing/global.cpp
Joachim Schoeberl 91d5c9888d ARRAY -> Array
2009-01-25 12:35:25 +00:00

62 lines
955 B
C++

#include <mystdlib.h>
#include "meshing.hpp"
namespace netgen
{
// stringstream emptystr;
// ostream * testout = &emptystr;
// testout -> clear(ios::failbit);
// ostream * testout = &cout;
ostream * testout = new ostream(0);
// NetgenOutStream * testout = new NetgenOutStream;
ostream * mycout = &cout;
ostream * myerr = &cerr;
// Flags globflags; // not used anymoure
Flags parameters;
int silentflag = 0;
int testmode = 0;
MeshingParameters mparam;
volatile multithreadt multithread;
string ngdir = ".";
Array<int> tets_in_qualclass;
multithreadt :: multithreadt()
{
pause =0;
testmode = 0;
redraw = 0;
drawing = 0;
terminate = 0;
running = 0;
percent = 0;
task = "";
}
DebugParameters debugparam;
bool verbose = 0;
int timestamp = 0;
int GetTimeStamp()
{
return timestamp;
}
int NextTimeStamp()
{
timestamp++;
return timestamp;
}
}