Skip to content
Snippets Groups Projects
Commit 4a9e31d7 authored by Anna's avatar Anna
Browse files

Rename Parameter::getInstance()

parent 47c203af
No related branches found
No related tags found
1 merge request!122Merge changes from develop into open source
......@@ -85,7 +85,7 @@ Parameter::~Parameter()
{
}
Parameter* Parameter::instance = 0;
Parameter* Parameter::getInstanz()
Parameter* Parameter::getInstance()
{
if( instance == 0 )
instance = new Parameter();
......
......@@ -114,7 +114,7 @@ public:
//! \brief generate a new instance of parameter object
static SPtr<Parameter> make();
//! \brief returns the instance generate a new instance of parameter object
static Parameter* getInstanz();
static Parameter* getInstance();
//! \brief Pointer to instance of ParameterStruct - stored on Host System
ParameterStruct* getParH();
//! \brief Pointer to instance of ParameterStruct - stored on Device (GPU)
......
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