Added some identifier synonyms for DUMP and DELETE.

Moved comments on DUMP and DELETE to phreeqcpp revisions
from phreeeqc revisions.

Updated keywords through DUMP.

git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/trunk@4829 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
David L Parkhurst 2010-09-20 22:59:32 +00:00
parent 8e65d00c75
commit 5aafb6d533
2 changed files with 6 additions and 4 deletions

View File

@ -156,6 +156,7 @@ bool StorageBinList::Read(CParser & parser)
vopts.push_back("all");
vopts.push_back("cell");
vopts.push_back("cells"); // 15
vopts.push_back("reaction_temperature");
}
std::istream::pos_type next_char;
@ -214,6 +215,7 @@ bool StorageBinList::Read(CParser & parser)
item = &(this->Get_reaction());
break;
case 12:
case 16:
item = &(this->Get_temperature());
break;
case 14:

View File

@ -269,9 +269,8 @@ bool dumper::Read(CParser & parser)
vopts.push_back("reaction"); // 20
vopts.push_back("reactions"); // 21
vopts.push_back("temperature"); // 22
vopts.push_back("temperatures"); // 23
vopts.push_back("reaction_temperature"); // 23
vopts.push_back("reaction_temperatures"); // 24
}
std::istream::pos_type ptr;
@ -343,7 +342,8 @@ bool dumper::Read(CParser & parser)
item = &(this->binList.Get_reaction());
break;
case 22: // temperature
case 23: // temperatures
case 23: // reaction_temperature
case 24: // reaction_temperatures
item = &(this->binList.Get_temperature());
break;
default: