mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 16:44:49 +01:00
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:
parent
36bf6b7fa1
commit
4ed743d04e
@ -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;
|
||||
|
||||
3
dumper.h
3
dumper.h
@ -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()); };
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user