Blame view

GUI/SW1/SRC/NewDialog.h 455 Bytes
886c558b   Steve Greedy   SACAMOS Public Re...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef NEWDIALOG_H
#define NEWDIALOG_H

//(*Headers(NewDialog)
#include <wx/dialog.h>
//*)

class NewDialog: public wxDialog
{
	public:

		NewDialog(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
		virtual ~NewDialog();

		//(*Declarations(NewDialog)
		//*)

	protected:

		//(*Identifiers(NewDialog)
		//*)

	private:

		//(*Handlers(NewDialog)
		//*)

		DECLARE_EVENT_TABLE()
};

#endif