iphreeqc/KineticsCxx.h
David L Parkhurst 60a1544019 Copying new classes (cxx) and cpp files to src
Will remove cpp and header files and make phreeqc an external directory.




git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/trunk@785 1feff8c3-07ed-0310-ac33-dd36852eb9cd
2006-02-16 00:21:39 +00:00

52 lines
1.2 KiB
C++

#if !defined(KINETICS_H_INCLUDED)
#define KINETICS_H_INCLUDED
#include "NumKeyword.h"
#define EXTERNAL extern
#include "global.h"
#include <cassert> // assert
#include <map> // std::map
#include <string> // std::string
#include <list> // std::list
#include <vector> // std::vector
#include "char_star.h"
#include "KineticsComp.h"
class cxxKinetics : public cxxNumKeyword
{
public:
cxxKinetics();
cxxKinetics(struct kinetics *);
~cxxKinetics();
struct kinetics *cxxKinetics2kinetics();
struct kinetics_comp *cxxKineticsComp2kinetics_comp();
//void dump_xml(std::ostream& os, unsigned int indent = 0)const;
void dump_raw(std::ostream& s_oss, unsigned int indent)const;
void read_raw(CParser& parser);
bool get_related_phases(void);
bool get_related_rate(void);
protected:
std::list<cxxKineticsComp> kineticsComps;
std::vector<double> steps;
cxxNameDouble totals;
double step_divide;
int rk;
int bad_step_max;
bool use_cvode;
public:
//static std::map<int, cxxKinetics>& map;
};
#endif // !defined(KINETICS_H_INCLUDED)