1/////////////////////////////////////////////////////////////////////////////
2// Name:        scoredg.h
3// Purpose:     Forty Thieves patience game
4// Author:      Chris Breeze
5// Modified by:
6// Created:     21/07/97
7// RCS-ID:      $Id: scoredg.h 29660 2004-10-05 15:38:40Z ABX $
8// Copyright:   (c) 1993-1998 Chris Breeze
9// Licence:     wxWindows licence
10//---------------------------------------------------------------------------
11// Last modified: 22nd July 1998 - ported to wxWidgets 2.0
12/////////////////////////////////////////////////////////////////////////////
13#ifndef _SCOREDG_H_
14#define _SCOREDG_H_
15
16class ScoreDialog : public wxDialog
17{
18public:
19    ScoreDialog(wxWindow* parent, ScoreFile* file);
20    virtual ~ScoreDialog(){};
21
22    void Display();
23
24protected:
25    void OnCloseWindow(wxCloseEvent& event);
26
27private:
28    ScoreFile* m_scoreFile;
29    wxButton* m_OK;
30
31DECLARE_EVENT_TABLE()
32};
33
34#endif
35