netgen/libsrc/meshing/global.hpp
Gerhard Kitzler 36a7a2a471 DLL_HEADER
2012-10-29 17:46:32 +00:00

58 lines
1.1 KiB
C++

#ifndef FILE_GLOBAL
#define FILE_GLOBAL
/**************************************************************************/
/* File: global.hh */
/* Author: Joachim Schoeberl */
/* Date: 01. Okt. 95 */
/**************************************************************************/
/*
global functions and variables
*/
namespace netgen
{
///
DLL_HEADER extern double GetTime ();
extern void ResetTime ();
///
extern int testmode;
/// calling parameters
// extern Flags parameters;
// extern DLL_HEADER MeshingParameters mparam;
extern Array<int> tets_in_qualclass;
class multithreadt
{
public:
int pause;
int testmode;
int redraw;
int drawing;
int terminate;
int running;
double percent;
const char * task;
bool demorunning;
multithreadt();
};
extern volatile multithreadt multithread;
DLL_HEADER extern string ngdir;
extern DebugParameters debugparam;
extern bool verbose;
extern int h_argc;
extern char ** h_argv;
}
#endif