]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Interface/Object.h
binary threshold image filter added
[cpPlugins.git] / lib / cpPlugins / Interface / Object.h
index b133fe70281e60724a4c0a6f021c119228ade2d8..6e273f174264f5fe3ea7f822c5254a76102557e8 100644 (file)
@@ -5,7 +5,6 @@
 #include <Pluma/Pluma.hpp>
 #include <cpPlugins/Interface/cpPlugins_Interface_Export.h>
 
-#define ITK_MANUAL_INSTANTIATION
 #include <itkObject.h>
 #include <itkObjectFactory.h>
 
   class cpPlugins_Interface_EXPORT TYPE##Provider               \
     : public pluma::Provider                                    \
   {                                                             \
-  private:                                                      \
+private:                                                        \
     friend class pluma::Pluma;                                  \
     static const unsigned int PLUMA_INTERFACE_VERSION;          \
     static const unsigned int PLUMA_INTERFACE_LOWEST_VERSION;   \
     static const std::string PLUMA_PROVIDER_TYPE;               \
     std::string plumaGetType( ) const                           \
     { return( PLUMA_PROVIDER_TYPE ); }                          \
-  public:                                                       \
+public:                                                         \
     unsigned int getVersion( ) const                            \
     { return( PLUMA_INTERFACE_VERSION ); }
 
@@ -31,7 +30,7 @@
 // -------------------------------------------------------------------------
 #define CPPLUGINS_PROVIDER_HEADER( TYPE )               \
   CPPLUGINS_PROVIDER_HEADER_BEGIN( TYPE )               \
-    virtual TYPE::Pointer create( ) const = 0;          \
+  virtual TYPE::Pointer create( ) const = 0;            \
   CPPLUGINS_PROVIDER_HEADER_END
 
 // -------------------------------------------------------------------------