Skip to content
Snippets Groups Projects
otbEmptyApp.cxx 512 B
Newer Older
#include "otbWrapperApplication.h"
#include "otbWrapperApplicationFactory.h"

class EmptyApp : public otb::Wrapper::Application
  typedef itk::SmartPointer<Self> Pointer; 

  itkNewMacro(Self);
  itkTypeMacro(otbEmptyApp, otb::Application);
private:
  void DoInit()
  {
    SetDescription("Empty application.");
  }

  void DoUpdateParameters()
  {
  }

  void DoExecute()
  {  
    int ThisDoesNothing = 0;   
  }
};