iphreeqc/SolutionIsotopeList.h
David L Parkhurst 157e5cc729 Slowly adding arguments and qualifiers to pass phreeqc class instance to routines that need it.
git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/trunk@3873 1feff8c3-07ed-0310-ac33-dd36852eb9cd
2009-12-08 00:56:50 +00:00

35 lines
698 B
C++

#if !defined(SOLUTIONISOTOPELIST_H_INCLUDED)
#define SOLUTIONISOTOPELIST_H_INCLUDED
#include <cassert> // assert
#include <string> // std::string
#include <list> // std::list
#include "SolutionIsotope.h"
#include "Phreeqc_class.h"
class cxxSolutionIsotopeList:public
std::list < cxxSolutionIsotope >
{
public:
cxxSolutionIsotopeList();
cxxSolutionIsotopeList(struct solution *solution_ptr);
~cxxSolutionIsotopeList();
struct isotope * cxxSolutionIsotopeList2isotope(PHREEQC_PTR_ARG);
void add(cxxSolutionIsotopeList oldlist, double intensive, double extensive);
void multiply(double extensive);
protected:
public:
};
#endif // !defined(SOLUTIONISOTOPELIST_H_INCLUDED)