Simplified mix with add(int, factor) method

git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/trunk@872 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
David L Parkhurst 2006-04-18 20:05:46 +00:00
parent 88e3ff6095
commit a372f9a8a2

4
Mix.h
View File

@ -28,6 +28,10 @@ public:
void read_raw(CParser& parser);
void add(int n, double f) {
mixComps[n] = f;
};
std::map<int, double> *comps() {return &mixComps;}
protected: