servatrice/cockatrice/src/localserver.h
2010-09-09 03:41:01 +02:00

23 lines
No EOL
596 B
C++

#ifndef LOCALSERVER_H
#define LOCALSERVER_H
#include "server.h"
class LocalServerInterface;
class LocalServer : public Server
{
Q_OBJECT
public:
LocalServer(QObject *parent = 0);
~LocalServer();
AuthenticationResult checkUserPassword(const QString & /*user*/, const QString & /*password*/) { return UnknownUser; }
QString getLoginMessage() const { return QString(); }
bool getGameShouldPing() const { return false; }
int getMaxGameInactivityTime() const { return 9999999; }
int getMaxPlayerInactivityTime() const { return 9999999; }
LocalServerInterface *newConnection();
};
#endif