summaryrefslogtreecommitdiffstats
path: root/matchblox/engine/C_Log.h
blob: 2b598dda68af00f6e18c9b2228459aa8923644d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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