Skip to content
Snippets Groups Projects
Commit 3118ab7f authored by Julien Malik's avatar Julien Malik
Browse files

ADD: add EmptyParameterFactory

parent 4a609e71
Branches
Tags
No related merge requests found
FILE(GLOB srcs "*.cxx")
ADD_LIBRARY(OTBWrapperQtWidget ${srcs})
TARGET_LINK_LIBRARIES(OTBWrapperQtWidget OTBCommon OTBIO otbWrapperCore)
/*=========================================================================
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 "otbWrapperQtWidgetEmptyParameterFactory.h"
namespace otb
{
namespace Wrapper
{
QtWidgetEmptyParameterFactory::QtWidgetEmptyParameterFactory()
{
}
QtWidgetEmptyParameterFactory::~QtWidgetEmptyParameterFactory()
{
}
QWidget*
QtWidgetEmptyParameterFactory::CreateQtWidget( Parameter* param )
{
}
}
}
#endif
/*=========================================================================
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 __otbWrapperQtEmptyWidgetFactory_h
#define __otbWrapperQtEmptyWidgetFactory_h
#include <QtGui>
#include "otbWrapperParameter.h"
namespace otb
{
namespace Wrapper
{
/** \class ImageIOFactory
* \brief Create instances of ImageIO objects using an object factory.
*/
class ITK_EXPORT QtWidgetEmptyParameterFactory : public itk::Object
{
public:
/** Standard class typedefs. */
typedef QtWidgetEmptyParameterFactory Self;
typedef itk::Object Superclass;
typedef itk::SmartPointer<Self> Pointer;
typedef itk::SmartPointer<const Self> ConstPointer;
/** Run-time type information (and related methods). */
itkTypeMacro(QtWidgetEmptyParameterFactory, Object);
/** Create the appropriate ImageIO depending on the particulars of the file. */
static QWidget* CreateQtWidget( Parameter* param );
protected:
QtWidgetEmptyParameterFactory();
virtual ~QtWidgetEmptyParameterFactory();
private:
QtWidgetEmptyParameterFactory(const Self&); //purposely not implemented
void operator=(const Self&); //purposely not implemented
};
}
}
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment