project: added project skeleton

Skeleton includes emtpy implementations of application class structure.
Source groups were added to CMakeLists to define filters in Visual Studio.
This commit is contained in:
Eberhard Graether
2014-03-31 17:59:52 +02:00
parent b5f91e62fa
commit d4e3433e5d
72 changed files with 957 additions and 57 deletions
+9
View File
@@ -0,0 +1,9 @@
#include "qt/QtElementFactory.h"
QtElementFactory::QtElementFactory()
{
}
QtElementFactory::~QtElementFactory()
{
}
+13
View File
@@ -0,0 +1,13 @@
#ifndef QT_ELEMENT_FACTORY_H
#define QT_ELEMENT_FACTORY_H
#include "gui/GuiElementFactory.h"
class QtElementFactory: public GuiElementFactory
{
public:
QtElementFactory();
~QtElementFactory();
};
# endif // QT_ELEMENT_FACTORY_H