mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 08:38:23 +01:00
Moved some methods for .h to source files to avoid need for includes. Debug and Release compile. Still need to get class version working. git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/trunk@3868 1feff8c3-07ed-0310-ac33-dd36852eb9cd
34 lines
656 B
C++
34 lines
656 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"
|
|
|
|
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);
|
|
void multiply(double extensive);
|
|
|
|
protected:
|
|
|
|
|
|
public:
|
|
|
|
|
|
};
|
|
|
|
#endif // !defined(SOLUTIONISOTOPELIST_H_INCLUDED)
|