mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 08:38:23 +01:00
Added eol and other changes for linux. Had statics in ReadClass.cxx, removed. Problems with .dmp files. May be because of statics. git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/trunk@3879 1feff8c3-07ed-0310-ac33-dd36852eb9cd
24 lines
662 B
C
24 lines
662 B
C
#ifndef _INC_PHREEQC_CLASS_H
|
|
#define _INC_PHREEQC_CLASS_H
|
|
#if !defined PHREEQC_CLASS
|
|
#define P_INSTANCE
|
|
#define P_INSTANCE_COMMA
|
|
#define P_INSTANCE_POINTER
|
|
#define PHREEQC_PTR_ARG
|
|
#define PHREEQC_PTR_ARG_COMMA
|
|
#define PHREEQC_THIS
|
|
#define PHREEQC_THIS_COMMA
|
|
#define PHREEQC_NAME_SPACE ::
|
|
#else
|
|
#define P_INSTANCE p_instance
|
|
#define P_INSTANCE_COMMA p_instance,
|
|
#define P_INSTANCE_POINTER p_instance->
|
|
#define PHREEQC_PTR_ARG Phreeqc *p_instance
|
|
#define PHREEQC_PTR_ARG_COMMA Phreeqc *p_instance,
|
|
#define PHREEQC_THIS this
|
|
#define PHREEQC_THIS_COMMA this,
|
|
#define PHREEQC_NAME_SPACE Phreeqc::
|
|
#endif
|
|
#endif /* _INC_PHREEQC_CLASS_H */
|
|
//#include "Phreeqc_class.h"
|