This commit is contained in:
doitux
2007-01-13 19:19:01 +00:00
parent c648b2a024
commit 5085ace50d
5 changed files with 17 additions and 24 deletions
+4 -2
View File
@@ -35,6 +35,7 @@ HEADERS += mainwindowimpl.h \
riverinterface.h \
enginefactory.h \
localenginefactory.h
SOURCES += pokerth.cpp \
mainwindowimpl.cpp \
newgamedialogimpl.cpp \
@@ -62,10 +63,11 @@ SOURCES += pokerth.cpp \
riverinterface.cpp \
enginefactory.cpp \
localenginefactory.cpp
RESOURCES = deck.qrc
TEMPLATE = app
DEPENDPATH += src uics src/gui src/engine_interfaces src/local_engine src/network_engine
INCLUDEPATH += . src uics src/gui src/engine_interfaces src/local_engine src/network_engine
DEPENDPATH += . src uics src/gui src/gui/qt src/engine src/engine/local_engine src/engine/network_engine
INCLUDEPATH += . src uics src/gui src/gui/qt src/engine src/engine/local_engine src/engine/network_engine
CONFIG += qt release
UI_DIR = uics
TARGET = bin/pokerth
@@ -19,11 +19,6 @@
***************************************************************************/
#include "enginefactory.h"
EngineFactory::EngineFactory()
{
}
EngineFactory::~EngineFactory()
{
}
@@ -20,14 +20,10 @@
#ifndef ENGINEFACTORY_H
#define ENGINEFACTORY_H
/**
@author FThauer FHammer <f.thauer@web.de>
*/
class EngineFactory{
public:
EngineFactory();
~EngineFactory();
virtual ~EngineFactory();
};