]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCreaDevManagerMainFrame.h
f818364599627f2ffc2f492503088487b118ab63
[crea.git] / lib / creaDevManagerLib / wxCreaDevManagerMainFrame.h
1 #ifndef WXCREADEVMANAGERMAINFRAME_H_INCLUDED
2 #define WXCREADEVMANAGERMAINFRAME_H_INCLUDED
3
4 class wxCreaDevManagerMainFrame:public wxFrame
5 {
6   public:
7     wxCreaDevManagerMainFrame(
8       wxWindow* parent,
9       wxWindowID id = -1,
10       const wxString& caption = _("CREATIS CreaDevManager"),
11       const wxPoint& pos = wxDefaultPosition,
12       const wxSize& size = wxDefaultSize,
13       long style = wxDEFAULT_FRAME_STYLE
14     );
15     
16     ~wxCreaDevManagerMainFrame();
17     
18     bool Create(
19       wxWindow* parent,
20       wxWindowID id = -1,
21       const wxString& caption = _("CREATIS CreaDevManager"),
22       const wxPoint& pos = wxDefaultPosition,
23       const wxSize& size = wxDefaultSize,
24       long style = wxDEFAULT_FRAME_STYLE
25     );
26 };
27
28 #endif