new branch: working
This commit is contained in:
@@ -2,6 +2,24 @@
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
Variable::Variable()
|
||||
{
|
||||
value = 0.0;
|
||||
}
|
||||
|
||||
Variable::Variable(const char* str) : name(str)
|
||||
{
|
||||
value = 0.0;
|
||||
}
|
||||
|
||||
Variable::Variable(double val) : value(val)
|
||||
{
|
||||
}
|
||||
|
||||
void Variable::initialize()
|
||||
{
|
||||
}
|
||||
|
||||
void Variable::setName(std::string& str)
|
||||
{
|
||||
name = str;
|
||||
|
||||
Reference in New Issue
Block a user