Skip to content
Snippets Groups Projects
Commit 01d0cf33 authored by renchao.lu's avatar renchao.lu
Browse files

[CL] set private access specifier.

parent a6e98b13
No related branches found
No related tags found
No related merge requests found
...@@ -65,12 +65,6 @@ public: ...@@ -65,12 +65,6 @@ public:
void executeSpeciationCalculation(double const dt) override; void executeSpeciationCalculation(double const dt) override;
void writeInputsToFile(double const dt = 0);
void execute();
void readOutputsFromFile();
std::vector<GlobalVector*> getIntPtProcessSolutions() const override; std::vector<GlobalVector*> getIntPtProcessSolutions() const override;
friend std::ostream& operator<<(std::ostream& os, friend std::ostream& operator<<(std::ostream& os,
...@@ -87,6 +81,12 @@ public: ...@@ -87,6 +81,12 @@ public:
std::string const _phreeqc_input_file; std::string const _phreeqc_input_file;
private: private:
void writeInputsToFile(double const dt = 0);
void execute();
void readOutputsFromFile();
PhreeqcIO& operator<<(double const dt) PhreeqcIO& operator<<(double const dt)
{ {
_dt = dt; _dt = dt;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment