summaryrefslogtreecommitdiffstats
path: root/Project/AboutForm.h
blob: ba64324b70d78d2cdf8b53f0e659f833d5da3e0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef ABOUTFORM_H
#define ABOUTFORM_H
#include "PropertiesForm.h"

#include <wx/textfile.h>

class AboutForm : public AboutFormBase
{
   public:
    AboutForm(wxWindow* parent);
    virtual ~AboutForm();
    virtual void Init();

   protected:
    virtual void OnOKButtonClick(wxCommandEvent& event) { EndModal(wxID_OK); };
};
#endif  // ABOUTFORM_H