summaryrefslogtreecommitdiffstats
path: root/matchblox/C_Log.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'matchblox/C_Log.cpp')
-rw-r--r--matchblox/C_Log.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/matchblox/C_Log.cpp b/matchblox/C_Log.cpp
new file mode 100644
index 0000000..d9a1154
--- /dev/null
+++ b/matchblox/C_Log.cpp
@@ -0,0 +1,24 @@
+#include "C_Log.h"
+
+C_Log::C_Log(char *f_strFileName)
+{
+}
+
+C_Log::~C_Log()
+{
+}
+
+bool C_Log::LogNewSession(int f_iUserID, int f_iGameID)
+{
+ return true;
+}
+
+bool C_Log::LogSessionTurn(int f_iUserID, int f_iGameID, int f_iBlockNr, int HolePos, unsigned int f_uiTime)
+{
+ return true;
+}
+
+bool C_Log::LogSessionTotals(int f_iUserID, int f_iGameID, unsigned int f_uiTotalTime)
+{
+ return true;
+}