summaryrefslogtreecommitdiffstats
path: root/matchblox/C_Log.h
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2008-05-14 11:56:06 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2008-05-14 11:56:06 (GMT)
commitd4d35970d88edccdd963e53ea3e11f702e1e2bab (patch)
treeaa3f522ef826752bf08e2396f70a3156e1b81e5b /matchblox/C_Log.h
parentab5d6fe55a31891ac8ad2949c31704e8245e116f (diff)
download2iv55-d4d35970d88edccdd963e53ea3e11f702e1e2bab.zip
2iv55-d4d35970d88edccdd963e53ea3e11f702e1e2bab.tar.gz
2iv55-d4d35970d88edccdd963e53ea3e11f702e1e2bab.tar.bz2
fix this
Diffstat (limited to 'matchblox/C_Log.h')
-rw-r--r--matchblox/C_Log.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/matchblox/C_Log.h b/matchblox/C_Log.h
new file mode 100644
index 0000000..2b598dd
--- /dev/null
+++ b/matchblox/C_Log.h
@@ -0,0 +1,20 @@
+#ifndef C_LOG_HEADER_FILE
+
+#define C_LOG_HEADER_FILE
+
+class C_Log
+{
+public:
+ C_Log(char *f_strFileName);
+ ~C_Log();
+
+ bool LogNewSession(int f_iUserID, int f_iGameID);
+ bool LogSessionTurn(int f_iUserID, int f_iGameID, int f_iBlockNr, int HolePos, unsigned int f_uiTime);
+ bool LogSessionTotals(int f_iUserID, int f_iGameID, unsigned int f_uiTotalTime);
+
+private:
+// FILE *m_pLogFile;
+};
+
+#endif //C_LOG_HEADER_FILE
+