Removed unnecessary header file ISolution.h

Tony's fix for plotting CSV

git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/trunk@5582 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
David L Parkhurst 2011-08-17 14:25:58 +00:00
parent 0043052431
commit 978f151573
2 changed files with 7 additions and 1 deletions

View File

@ -12,7 +12,7 @@
#include <fstream>
#include "ISolutionComp.h"
#include "NumKeyword.h"
//#include "NumKeyword.h"
#include "Solution.h"
class cxxISolution:public cxxSolution

View File

@ -1443,6 +1443,12 @@ CParser::TOKEN_TYPE CParser::parse_delimited(std::string & source, std::string &
temp = source.substr(pos+1);
source = temp;
}
else if (pos == 0)
{
temp = source.substr(pos+1);
source = temp;
return token_type("");
}
else
{
result = source;