summaryrefslogtreecommitdiffstats
path: root/MatchBloxEngine/MatchBloxEngine/C_Log.h
diff options
context:
space:
mode:
Diffstat (limited to 'MatchBloxEngine/MatchBloxEngine/C_Log.h')
-rw-r--r--MatchBloxEngine/MatchBloxEngine/C_Log.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/MatchBloxEngine/MatchBloxEngine/C_Log.h b/MatchBloxEngine/MatchBloxEngine/C_Log.h
new file mode 100644
index 0000000..a131cd5
--- /dev/null
+++ b/MatchBloxEngine/MatchBloxEngine/C_Log.h
@@ -0,0 +1,19 @@
+#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 \ No newline at end of file