]> git.saurik.com Git - wxWidgets.git/blame - samples/forty/scorefil.h
added SetRecordDefaults() and IsRecordingDefaults() methods
[wxWidgets.git] / samples / forty / scorefil.h
CommitLineData
63cafd27
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: scorefil.h
3// Purpose: Forty Thieves patience game
4// Author: Chris Breeze
5// Modified by:
6// Created: 21/07/97
7// RCS-ID: $Id$
8// Copyright: (c) 1993-1998 Chris Breeze
9// Licence: wxWindows licence
10//---------------------------------------------------------------------------
11// Last modified: 22nd July 1998 - ported to wxWindows 2.0
12/////////////////////////////////////////////////////////////////////////////
13#ifndef _SCOREFILE_H_
14#define _SCOREFILE_H_
15
16class wxConfig;
17
18class ScoreFile {
19public:
20 ScoreFile(const char* appName);
21 virtual ~ScoreFile();
22
23 void GetPlayerList(wxString** list, int& number);
24 wxString GetPreviousPlayer() const;
25
26 void ReadPlayersScore(const char* player, int& wins, int& games, int &score);
27 void WritePlayersScore(const char* player, int wins, int games, int score);
28
29private:
30 long CalcCheck(const char* name, int p1, int p2, int p3);
31 wxString m_configFilename;
32 wxConfig* m_config;
33};
34
35#endif