summaryrefslogtreecommitdiffstats
path: root/matchblox/engine/C_Log.cpp
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/engine/C_Log.cpp
parentab5d6fe55a31891ac8ad2949c31704e8245e116f (diff)
download2iv55-d4d35970d88edccdd963e53ea3e11f702e1e2bab.zip
2iv55-d4d35970d88edccdd963e53ea3e11f702e1e2bab.tar.gz
2iv55-d4d35970d88edccdd963e53ea3e11f702e1e2bab.tar.bz2
fix this
Diffstat (limited to 'matchblox/engine/C_Log.cpp')
-rw-r--r--matchblox/engine/C_Log.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/matchblox/engine/C_Log.cpp b/matchblox/engine/C_Log.cpp
new file mode 100644
index 0000000..d9a1154
--- /dev/null
+++ b/matchblox/engine/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;
+}