This commit is contained in:
+15
-13
@@ -15,9 +15,9 @@ HEADERS += mainwindowimpl.h \
|
|||||||
log.h \
|
log.h \
|
||||||
guiinterface.h \
|
guiinterface.h \
|
||||||
guiwrapper.h \
|
guiwrapper.h \
|
||||||
session.h \
|
session.h \
|
||||||
game.h \
|
game.h \
|
||||||
localhand.h \
|
localhand.h \
|
||||||
localboard.h \
|
localboard.h \
|
||||||
localplayer.h \
|
localplayer.h \
|
||||||
cardsvalue.h \
|
cardsvalue.h \
|
||||||
@@ -26,25 +26,26 @@ HEADERS += mainwindowimpl.h \
|
|||||||
localturn.h \
|
localturn.h \
|
||||||
localriver.h \
|
localriver.h \
|
||||||
tools.h \
|
tools.h \
|
||||||
handinterface.h \
|
handinterface.h \
|
||||||
playerinterface.h \
|
playerinterface.h \
|
||||||
boardinterface.h \
|
boardinterface.h \
|
||||||
preflopinterface.h \
|
preflopinterface.h \
|
||||||
flopinterface.h \
|
flopinterface.h \
|
||||||
turninterface.h \
|
turninterface.h \
|
||||||
riverinterface.h \
|
riverinterface.h \
|
||||||
enginefactory.h \
|
enginefactory.h \
|
||||||
localenginefactory.h
|
localenginefactory.h
|
||||||
|
|
||||||
SOURCES += pokerth.cpp \
|
SOURCES += pokerth.cpp \
|
||||||
mainwindowimpl.cpp \
|
mainwindowimpl.cpp \
|
||||||
newgamedialogimpl.cpp \
|
newgamedialogimpl.cpp \
|
||||||
aboutpokerthimpl.cpp \
|
aboutpokerthimpl.cpp \
|
||||||
log.cpp \
|
log.cpp \
|
||||||
guiinterface.cpp \
|
guiinterface.cpp \
|
||||||
guiwrapper.cpp \
|
guiwrapper.cpp \
|
||||||
session.cpp \
|
session.cpp \
|
||||||
game.cpp \
|
game.cpp \
|
||||||
localhand.cpp \
|
localhand.cpp \
|
||||||
localboard.cpp \
|
localboard.cpp \
|
||||||
localplayer.cpp \
|
localplayer.cpp \
|
||||||
cardsvalue.cpp \
|
cardsvalue.cpp \
|
||||||
@@ -53,19 +54,20 @@ SOURCES += pokerth.cpp \
|
|||||||
localturn.cpp \
|
localturn.cpp \
|
||||||
localriver.cpp \
|
localriver.cpp \
|
||||||
tools.cpp \
|
tools.cpp \
|
||||||
handinterface.cpp \
|
handinterface.cpp \
|
||||||
playerinterface.cpp \
|
playerinterface.cpp \
|
||||||
boardinterface.cpp \
|
boardinterface.cpp \
|
||||||
preflopinterface.cpp \
|
preflopinterface.cpp \
|
||||||
flopinterface.cpp \
|
flopinterface.cpp \
|
||||||
turninterface.cpp \
|
turninterface.cpp \
|
||||||
riverinterface.cpp \
|
riverinterface.cpp \
|
||||||
enginefactory.cpp \
|
enginefactory.cpp \
|
||||||
localenginefactory.cpp
|
localenginefactory.cpp
|
||||||
|
|
||||||
RESOURCES = deck.qrc
|
RESOURCES = deck.qrc
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
DEPENDPATH += 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/engine_interfaces src/local_engine src/network_engine
|
INCLUDEPATH += . src uics src/gui src/gui/qt src/engine src/engine/local_engine src/engine/network_engine
|
||||||
CONFIG += qt release
|
CONFIG += qt release
|
||||||
UI_DIR = uics
|
UI_DIR = uics
|
||||||
TARGET = bin/pokerth
|
TARGET = bin/pokerth
|
||||||
|
|||||||
@@ -19,11 +19,6 @@
|
|||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
#include "enginefactory.h"
|
#include "enginefactory.h"
|
||||||
|
|
||||||
EngineFactory::EngineFactory()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
EngineFactory::~EngineFactory()
|
EngineFactory::~EngineFactory()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
@@ -20,14 +20,10 @@
|
|||||||
#ifndef ENGINEFACTORY_H
|
#ifndef ENGINEFACTORY_H
|
||||||
#define ENGINEFACTORY_H
|
#define ENGINEFACTORY_H
|
||||||
|
|
||||||
/**
|
|
||||||
@author FThauer FHammer <f.thauer@web.de>
|
|
||||||
*/
|
|
||||||
class EngineFactory{
|
class EngineFactory{
|
||||||
public:
|
public:
|
||||||
EngineFactory();
|
|
||||||
|
|
||||||
~EngineFactory();
|
virtual ~EngineFactory();
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Reference in New Issue
Block a user