mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-15 16:18:22 +01:00
git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@4106 1feff8c3-07ed-0310-ac33-dd36852eb9cd
28 lines
397 B
C++
28 lines
397 B
C++
// phreeqc namespace
|
|
//
|
|
|
|
#if !defined(_INC_GLOBALNS)
|
|
#define _INC_GLOBALNS
|
|
|
|
#if defined(_DEBUG)
|
|
#pragma warning(disable : 4786) // disable truncation warning
|
|
#endif
|
|
|
|
#include <math.h>
|
|
|
|
|
|
#define EXTERNAL extern
|
|
|
|
#include "global.h"
|
|
#include "phqalloc.h"
|
|
#include "input.h"
|
|
#include "output.h"
|
|
#include "phrqproto.h"
|
|
EXTERNAL int n_user_punch_index;
|
|
|
|
#undef EXTERNAL
|
|
|
|
|
|
#endif /* _INC_GLOBALNS */
|
|
|