Skip to content
Snippets Groups Projects
Commit 1562ca43 authored by Cyrille Valladeau's avatar Cyrille Valladeau
Browse files

Correction : le New() sortait en erreur.

parent 51f2f655
Branches
Tags
No related merge requests found
...@@ -19,8 +19,10 @@ ...@@ -19,8 +19,10 @@
#define _otbImageWidgetFormBase_h #define _otbImageWidgetFormBase_h
#include "itkDataObject.h" #include "itkDataObject.h"
#include "itkObjectFactory.h"
#include "itkFixedArray.h" #include "itkFixedArray.h"
#include "itkImageRegion.h" #include "itkImageRegion.h"
#include "itkMacro.h"
#include <FL/gl.h> #include <FL/gl.h>
namespace otb namespace otb
...@@ -29,21 +31,23 @@ namespace otb ...@@ -29,21 +31,23 @@ namespace otb
* \brief * \brief
* *
*/ */
class ImageWidgetFormBase class ITK_EXPORT ImageWidgetFormBase
: public itk::DataObject : public itk::DataObject
{ {
public: public:
/** Standard class typedefs */ /** Standard class typedefs */
typedef ImageWidgetFormBase Self; typedef ImageWidgetFormBase Self;
typedef itk::DataObject Superclass; typedef itk::DataObject Superclass;
typedef itk::SmartPointer<Self> Pointer; typedef itk::SmartPointer<Self> Pointer;
typedef itk::SmartPointer<const Self> ConstPointer; typedef itk::SmartPointer<const Self> ConstPointer;
/** Runtime information */
itkTypeMacro(ImageWidgetFormBase,DataObject);
/** Method for creation through the object factory */ /** Method for creation through the object factory */
itkNewMacro(Self); itkNewMacro(Self);
/** Runtime information */
itkTypeMacro(ImageWidgetFormBase,DataObject);
typedef itk::FixedArray<float,4> ColorType; typedef itk::FixedArray<float,4> ColorType;
typedef itk::ImageRegion<2> RegionType; typedef itk::ImageRegion<2> RegionType;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment