Blame view

GUI/SW1/SRC/LAPLACE.h 437 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 LAPLACE_H
#define LAPLACE_H

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

class LAPLACE: public wxDialog
{
	public:

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

		//(*Declarations(LAPLACE)
		//*)

	protected:

		//(*Identifiers(LAPLACE)
		//*)

	private:

		//(*Handlers(LAPLACE)
		//*)

		DECLARE_EVENT_TABLE()
};

#endif