]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/forty/scorefil.h
add VC9 project files (closes #9960)
[wxWidgets.git] / demos / forty / scorefil.h
index d73bb62540995714ff7acde8a21cd3d9e1cf3663..a6d2121a673c46c1f6329fe2aca0debe4f9aaf12 100644 (file)
@@ -6,37 +6,30 @@
 // Created:     21/07/97
 // RCS-ID:      $Id$
 // Copyright:   (c) 1993-1998 Chris Breeze
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 //---------------------------------------------------------------------------
-// Last modified: 22nd July 1998 - ported to wxWindows 2.0
+// Last modified: 22nd July 1998 - ported to wxWidgets 2.0
 /////////////////////////////////////////////////////////////////////////////
 #ifndef _SCOREFILE_H_
 #define _SCOREFILE_H_
 
 #include <wx/config.h>
 
-#ifdef __WIN16__
-#include <wx/fileconf.h>
-
-#undef wxConfig
-#define wxConfig wxFileConfig
-#endif
-
 class ScoreFile {
 public:
-       ScoreFile(const wxString& appName);
-       virtual ~ScoreFile();
+    ScoreFile(const wxString& appName);
+    virtual ~ScoreFile();
 
-       void GetPlayerList( wxArrayString &list );
-       wxString GetPreviousPlayer() const;
+    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);
+    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;
+    long CalcCheck(const wxString& name, int p1, int p2, int p3);
+    wxString m_configFilename;
+    wxConfig* m_config;
 };
 
 #endif