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

BUG: fix inheritance

parent b0ca9f41
Branches
Tags
No related merge requests found
...@@ -25,17 +25,15 @@ namespace otb ...@@ -25,17 +25,15 @@ namespace otb
namespace Wrapper namespace Wrapper
{ {
/** \class StringParameter /** \class StringParameter
* \brief This class represent a string parameter for the wrapper framework * \brief This class represent a string parameter for the wrapper framework
*/ */
class StringParameter class StringParameter
: public itk::LightObject : public Parameter
{ {
public: public:
/** Standard class typedef */ /** Standard class typedef */
typedef Parameter Self; typedef StringParameter Self;
typedef itk::LightObject Superclass; typedef itk::LightObject Superclass;
typedef itk::SmartPointer<Self> Pointer; typedef itk::SmartPointer<Self> Pointer;
typedef itk::SmartPointer<const Self> ConstPointer; typedef itk::SmartPointer<const Self> ConstPointer;
...@@ -44,8 +42,7 @@ public: ...@@ -44,8 +42,7 @@ public:
itkNewMacro(Self); itkNewMacro(Self);
/** RTTI support */ /** RTTI support */
itkTypeMacro(Parameter,itk::LightObject); itkTypeMacro(StringParameter, Parameter);
protected: protected:
/** Constructor */ /** Constructor */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment