Skip to content
Snippets Groups Projects
Commit 27d0b81c authored by Julien Malik's avatar Julien Malik
Browse files

MRG

parents 1d78ab93 559a8725
Branches
Tags
No related merge requests found
......@@ -30,10 +30,10 @@ Application::~Application()
{
}
otb::Wrapper::ParameterGroup*
Application::GetParameterList()
void Application::Init()
{
return m_ParameterList;
m_ParameterList = ParameterGroup::New();
this->DoCreateParameters();
}
void Application::Init()
......
......@@ -62,7 +62,6 @@ public:
/** Get the number of available choice */
unsigned int GetNbChoices( void );
/** Set any value */
virtual void SetValue(unsigned int v);
......
......@@ -139,10 +139,6 @@ protected:
virtual ~Parameter()
{}
private:
Parameter(const Parameter &); //purposely not implemented
void operator =(const Parameter&); //purposely not implemented
/** Name of the parameter */
std::string m_Name;
......@@ -158,6 +154,10 @@ private:
/** Default value behaviour */
DefaultValueMode m_DefaultValueMode;
private:
Parameter(const Parameter &); //purposely not implemented
void operator =(const Parameter&); //purposely not implemented
}; // End class Parameter
} // End namespace Wrapper
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment