#include <Variable.hpp>

Public Types | |
| enum | Type { domain, function, ifstream, mesh, ofstream, real, scene, testFuncion, unknown, unknownList, vector3 } |
Public Member Functions | |
| const Variable::Type & | type () const |
| const std::string & | name () const |
| Variable (const std::string &name, const Variable::Type &type) | |
| Variable (const Variable &v) | |
| virtual | ~Variable () |
Private Attributes | |
| const Variable::Type | __type |
| The type of the variable. | |
| const std::string | __name |
| the name of the variable | |
Definition at line 33 of file Variable.hpp.
| enum Variable::Type |
| domain | |
| function | |
| ifstream | |
| mesh | |
| ofstream | |
| real | |
| scene | |
| testFuncion | |
| unknown | |
| unknownList | |
| vector3 |
Definition at line 36 of file Variable.hpp.
00036 { 00037 domain, 00038 function, 00039 ifstream, 00040 mesh, 00041 ofstream, 00042 real, 00043 scene, 00044 testFuncion, 00045 unknown, 00046 unknownList, 00047 vector3 00048 };
| Variable::Variable | ( | const std::string & | name, | |
| const Variable::Type & | type | |||
| ) | [inline] |
| Variable::Variable | ( | const Variable & | v | ) | [inline] |
| virtual Variable::~Variable | ( | ) | [inline, virtual] |
| const Variable::Type& Variable::type | ( | ) | const [inline] |
Definition at line 58 of file Variable.hpp.
References __type.
Referenced by VariableRepository::findVariable().
00059 { 00060 return __type; 00061 }
| const std::string& Variable::name | ( | ) | const [inline] |
Definition at line 63 of file Variable.hpp.
References __name.
Referenced by IFStreamVariable::expression(), OFStreamVariable::expression(), DomainVariable::expression(), SceneVariable::expression(), and MeshVariable::expression().
00064 { 00065 return __name; 00066 }
const Variable::Type Variable::__type [private] |
const std::string Variable::__name [private] |
1.5.6