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

ENH: improve QtWidgetParameterFactory

parent 1012c65d
No related branches found
No related tags found
No related merge requests found
......@@ -84,6 +84,7 @@ IF(OTB_USE_QT)
FIND_PACKAGE(Qt4 REQUIRED)
SET(QT_USE_QTXML 1)
INCLUDE(${QT_USE_FILE})
INCLUDE_DIRECTORIES(${QT_INCLUDE_DIRS})
ENDIF(OTB_USE_QT)
......
......@@ -33,6 +33,21 @@ QtWidgetParameterFactory::~QtWidgetParameterFactory()
}
void
QtWidgetParameterFactory::RegisterBuiltInFactories()
{
}
QWidget*
QtWidgetParameterFactory::CreateQtWidget( Parameter* param )
{
return 0;
}
}
}
......
......@@ -49,7 +49,7 @@ public:
protected:
QtWidgetParameterFactory();
~QtWidgetParameterFactory();
virtual ~QtWidgetParameterFactory();
private:
QtWidgetParameterFactory(const Self&); //purposely not implemented
......
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