diff --git a/Example/Addition/otbAddition.h b/Example/Addition/otbAddition.h deleted file mode 100644 index 1bd621241dba26b906945334f0f2342c0898ce1d..0000000000000000000000000000000000000000 --- a/Example/Addition/otbAddition.h +++ /dev/null @@ -1,62 +0,0 @@ -/*========================================================================= - - Program: ORFEO Toolbox - Language: C++ - Date: $Date$ - Version: $Revision$ - - - Copyright (c) Centre National d'Etudes Spatiales. All rights reserved. - See OTBCopyright.txt for details. - - - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the above copyright notices for more information. - - =========================================================================*/ - -#include "otbWrapperApplication.h" - - -namespace otb -{ -namespace Wrapper -{ - -class ITK_EXPORT Addition : public Application -{ -public: - /** Standard class typedefs. */ - typedef Addition Self; - typedef Application Superclass; - typedef itk::SmartPointer<Self> Pointer; - typedef itk::SmartPointer<const Self> ConstPointer; - - /** Standard macro */ - itkNewMacro(Self); - - itkTypeMacro(Self, otb::Application); - -protected: - Addition(); - - virtual ~Addition(); - -private: - void DoCreateParameters(); - - void DoUpdateParameters(); - - void DoExecute(); - -}; - -} - -} - -extern "C" -{ - itk::ObjectFactoryBase* itkLoad(); -} diff --git a/Example/Smoothing/otbSmoothing.h b/Example/Smoothing/otbSmoothing.h deleted file mode 100644 index 5a61ced8b6c768114700a5cf06e18d3684bc54c9..0000000000000000000000000000000000000000 --- a/Example/Smoothing/otbSmoothing.h +++ /dev/null @@ -1,65 +0,0 @@ -/*========================================================================= - - Program: ORFEO Toolbox - Language: C++ - Date: $Date$ - Version: $Revision$ - - - Copyright (c) Centre National d'Etudes Spatiales. All rights reserved. - See OTBCopyright.txt for details. - - - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the above copyright notices for more information. - - =========================================================================*/ - -#include "otbWrapperApplication.h" - - -namespace otb -{ -namespace Wrapper -{ - -class ITK_EXPORT Smoothing : public Application -{ -public: - /** Standard class typedefs. */ - typedef Smoothing Self; - typedef Application Superclass; - typedef itk::SmartPointer<Self> Pointer; - typedef itk::SmartPointer<const Self> ConstPointer; - - /** Standard macro */ - itkNewMacro(Self); - - itkTypeMacro(Self, otb::Application); - -protected: - Smoothing(); - - virtual ~Smoothing(); - -private: - void DoCreateParameters(); - - void DoUpdateParameters(); - - void DoExecute(); - - itk::ProcessObject::Pointer ref; - -}; - -} - -} - - -extern "C" -{ - itk::ObjectFactoryBase* itkLoad(); -}