Skip to content
Snippets Groups Projects
Commit 7e9f0220 authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

REFAC: with missing file

parent 1daa963b
No related branches found
No related tags found
No related merge requests found
/*=========================================================================
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.
=========================================================================*/
#ifndef __otbListenerBase_h
#define __otbListenerBase_h
namespace otb
{
/**
* \class ListenerBase
*
* Vectorization view interface specification for the model
*
* \ingroup Visualization
*/
class ListenerBase
{
public:
/** Standard class typedefs */
typedef ListenerBase Self;
// Update the display
virtual void Notify() = 0;
protected:
/** Constructor */
ListenerBase() {};
/** Destructor */
virtual ~ListenerBase() {};
private:
ListenerBase(const Self&); //purposely not implemented
void operator=(const Self&); //purposely not implemented
};
} // end namespace otb
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment