mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
52 lines
1003 B
C++
52 lines
1003 B
C++
#ifndef FILE_GLOBAL
|
|
#define FILE_GLOBAL
|
|
|
|
|
|
/**************************************************************************/
|
|
/* File: global.hh */
|
|
/* Author: Joachim Schoeberl */
|
|
/* Date: 01. Okt. 95 */
|
|
/**************************************************************************/
|
|
|
|
/*
|
|
global functions and variables
|
|
*/
|
|
|
|
///
|
|
extern double GetTime ();
|
|
extern void ResetTime ();
|
|
|
|
///
|
|
extern int testmode;
|
|
|
|
/// calling parameters
|
|
extern Flags parameters;
|
|
|
|
extern 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;
|
|
|
|
extern string ngdir;
|
|
extern DebugParameters debugparam;
|
|
extern bool verbose;
|
|
|
|
#endif
|