4db94043cb
Files correlati : Commento : Spostamento in libraries delle librerie esterne di Campo per una maggiore pulizia e organizzazione git-svn-id: svn://10.65.10.50/branches/R_10_00@24150 c028cbd2-c16b-5b4b-a496-9718f37d4682
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: scorefil.h
|
|
// Purpose: Forty Thieves patience game
|
|
// Author: Chris Breeze
|
|
// Modified by:
|
|
// Created: 21/07/97
|
|
// RCS-ID: $Id: scorefil.h 27580 2004-06-02 09:14:59Z ABX $
|
|
// Copyright: (c) 1993-1998 Chris Breeze
|
|
// Licence: wxWindows licence
|
|
//---------------------------------------------------------------------------
|
|
// Last modified: 22nd July 1998 - ported to wxWidgets 2.0
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _SCOREFILE_H_
|
|
#define _SCOREFILE_H_
|
|
|
|
#include <wx/config.h>
|
|
|
|
class ScoreFile {
|
|
public:
|
|
ScoreFile(const wxString& appName);
|
|
virtual ~ScoreFile();
|
|
|
|
void GetPlayerList( wxArrayString &list );
|
|
wxString GetPreviousPlayer() const;
|
|
|
|
void ReadPlayersScore(const wxString& player, int& wins, int& games, int &score);
|
|
void WritePlayersScore(const wxString& player, int wins, int games, int score);
|
|
|
|
private:
|
|
long CalcCheck(const wxString& name, int p1, int p2, int p3);
|
|
wxString m_configFilename;
|
|
wxConfig* m_config;
|
|
};
|
|
|
|
#endif
|