Some include file optimizations. Fixes for the server.

This commit is contained in:
lotodore
2007-05-15 20:37:37 +00:00
parent c3fd4dded6
commit c160a09811
19 changed files with 144 additions and 123 deletions
+4 -7
View File
@@ -20,18 +20,15 @@
#ifndef LOCALRIVER_H
#define LOCALRIVER_H
#include "riverinterface.h"
#include <riverinterface.h>
#include <iostream>
class HandInterface;
#include "handinterface.h"
class LocalRiver : public RiverInterface{
public:
LocalRiver(HandInterface*, int, int, int, int);
~LocalRiver();
LocalRiver(HandInterface*, int, int, int, int);
~LocalRiver();
void setPlayersTurn(const int& theValue) { playersTurn = theValue; }
int getPlayersTurn() const { return playersTurn; }