Skip to content
Snippets Groups Projects
Commit 85b92ecd authored by Konstantin Kutscher's avatar Konstantin Kutscher
Browse files

Merge pull request '- bugfix: wrong parameter name' (#1) from feature/suresoft into develop

parents 49f80ae4 ebae0f13
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ public:
void setFunction(const std::string& functionstring) { this->function.SetExpr(functionstring); }
void setFunction(const double& constVelocity) { std::stringstream dummy; dummy<<constVelocity; function.SetExpr(dummy.str()); }
void setStartTime(const double& starttime) {this->starttime = starttime; }
void setEndTime(const double& starttime) {this->endtime = endtime; }
void setEndTime(const double& endtime) {this->endtime = endtime; }
mu::Parser& getFunction() { return function; }
const mu::Parser& getFunction() const { return function; }
......
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