netgen/libsrc/meshing/global.hpp

58 lines
1.1 KiB
C++
Raw Normal View History

2009-01-12 23:40:13 +00:00
#ifndef FILE_GLOBAL
#define FILE_GLOBAL
/**************************************************************************/
/* File: global.hh */
/* Author: Joachim Schoeberl */
/* Date: 01. Okt. 95 */
/**************************************************************************/
/*
global functions and variables
*/
2011-03-02 20:50:39 +00:00
namespace netgen
2009-01-12 23:40:13 +00:00
{
2011-03-02 20:50:39 +00:00
///
DLL_HEADER extern double GetTime ();
extern void ResetTime ();
///
extern int testmode;
/// calling parameters
// extern Flags parameters;
2011-07-25 11:33:19 +00:00
// extern DLL_HEADER MeshingParameters mparam;
2011-03-02 20:50:39 +00:00
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;
2012-10-29 17:46:32 +00:00
DLL_HEADER extern string ngdir;
2011-03-02 20:50:39 +00:00
extern DebugParameters debugparam;
extern bool verbose;
2012-07-06 07:49:05 +00:00
extern int h_argc;
extern char ** h_argv;
2011-03-02 20:50:39 +00:00
}
2009-01-12 23:40:13 +00:00
#endif