added Set_file_name method for use in IPhreeqc

git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/branches/ErrorHandling@5898 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
Scott R Charlton 2011-12-15 01:04:06 +00:00
parent 36bf6b7fa1
commit 4ed743d04e
2 changed files with 4 additions and 2 deletions

View File

@ -28,7 +28,8 @@ void dumper::SetAll(bool tf)
{
this->binList.SetAll(tf);
}bool dumper::Read(CParser & parser)
}
bool dumper::Read(CParser & parser)
{
bool return_value(true);
static std::vector < std::string > vopts;

View File

@ -3,7 +3,7 @@
#include <set> // std::set
#include <string> // std::string
#include <list> // std::list
#include <vector> // std::vector
#include <vector> // std::vector
#include "StorageBinList.h"
class CParser;
@ -16,6 +16,7 @@ public:
bool Read(CParser & parser);
void SetAll(bool tf);
std::string Get_file_name(void) { return(this->file_name); };
void Set_file_name(std::string fn) { this->file_name = fn; };
bool Get_append(void) { return(this->append); };
bool Get_bool_solution(void) { return(this->binList.Get_solution().Get_defined()); };
bool Get_bool_pp_assemblage(void) { return(this->binList.Get_pp_assemblage().Get_defined()); };