summaryrefslogtreecommitdiffstats
path: root/knights/challenge_game.h
diff options
context:
space:
mode:
Diffstat (limited to 'knights/challenge_game.h')
-rw-r--r--knights/challenge_game.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/knights/challenge_game.h b/knights/challenge_game.h
new file mode 100644
index 0000000..6857492
--- /dev/null
+++ b/knights/challenge_game.h
@@ -0,0 +1,47 @@
+/***************************************************************************
+ game.h - description
+ -------------------
+ begin : Mon Jan 7 2002
+ copyright : (C) 2003 by Eric Faccer
+ email : e.faccer@qut.edu.au
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+#ifndef GAME_H
+#define GAME_H
+#include <qstring.h>
+
+class Challenge_Game {
+
+ public:
+ Challenge_Game(QString seeker, QString seeker_rating, QString match_kind, QString rated, QString time, QString incr, QString uid);
+
+ public:
+
+ int id() { return _id; };
+ int clock() { return _clock; };
+ int increment() { return _increment; };
+ bool rated() { return _rated; };
+ int rating() { return _player_rating; };
+ QString _player;
+ QString _match_type;
+ QString _is_rated;
+
+ private:
+ int _id;
+ bool _rated;
+ int _player_rating;
+ int _clock;
+ int _increment;
+};
+
+#endif
+