mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-15 16:18:22 +01:00
Working through using C++ structures in transport git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/trunk@855 1feff8c3-07ed-0310-ac33-dd36852eb9cd
36 lines
724 B
C++
36 lines
724 B
C++
#if !defined(SOLUTIONISOTOPELIST_H_INCLUDED)
|
|
#define SOLUTIONISOTOPELIST_H_INCLUDED
|
|
|
|
#define EXTERNAL extern
|
|
#include "SolutionIsotope.h"
|
|
#include "global.h"
|
|
#include <cassert> // assert
|
|
#include <string> // std::string
|
|
#include <list> // std::list
|
|
|
|
#include "char_star.h"
|
|
#include "Parser.h"
|
|
class cxxSolutionIsotopeList : public std::list <cxxSolutionIsotope>
|
|
{
|
|
|
|
public:
|
|
cxxSolutionIsotopeList();
|
|
|
|
cxxSolutionIsotopeList(struct solution *solution_ptr);
|
|
|
|
~cxxSolutionIsotopeList();
|
|
|
|
struct isotope *cxxSolutionIsotopeList2isotope();
|
|
|
|
void add(cxxSolutionIsotopeList oldlist, double intensive, double extensive);
|
|
|
|
protected:
|
|
|
|
|
|
public:
|
|
|
|
|
|
};
|
|
|
|
#endif // !defined(SOLUTIONISOTOPELIST_H_INCLUDED)
|