const modifications

git-svn-id: svn://136.177.114.72/svn_GW/phreeqc3/trunk@6352 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
Scott R Charlton 2012-04-04 00:05:30 +00:00
parent d2577f8b46
commit 7347290a28

View File

@ -25,7 +25,9 @@ class cxxReaction:public cxxNumKeyword
const cxxNameDouble &Get_elementList(void) const {return this->elementList;}
void Set_elementList(cxxNameDouble nd) {this->elementList = nd;}
cxxNameDouble &Get_reactantList(void) {return this->reactantList;}
const cxxNameDouble &Get_reactantList(void)const {return this->reactantList;}
std::vector < LDBLE > &Get_steps(void) {return this->steps;}
const std::vector < LDBLE > &Get_steps(void)const {return this->steps;}
void Set_steps(std::vector<LDBLE> &v) {steps = v;}
int Get_reaction_steps(void) const;
int Get_countSteps(void) const {return this->countSteps;}