Blame view

GUI/SW1/SRC/LAPLACE.cpp 550 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
#include "LAPLACE.h"

//(*InternalHeaders(LAPLACE)
#include <wx/intl.h>
#include <wx/string.h>
//*)

//(*IdInit(LAPLACE)
//*)

BEGIN_EVENT_TABLE(LAPLACE,wxDialog)
	//(*EventTable(LAPLACE)
	//*)
END_EVENT_TABLE()

LAPLACE::LAPLACE(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size)
{
	//(*Initialize(LAPLACE)
	Create(parent, id, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE, _T("id"));
	SetClientSize(wxDefaultSize);
	Move(wxDefaultPosition);
	//*)
}

LAPLACE::~LAPLACE()
{
	//(*Destroy(LAPLACE)
	//*)
}