+ #ifndef __WXUNIVERSAL__
+
+ class WXDLLEXPORT wxFrame : public wxFrameGTK
+ {
+ public:
+ // construction
+ wxFrame() { Init(); }
+ wxFrame(wxWindow *parent,
+ wxWindowID id,
+ const wxString& title,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = wxDEFAULT_FRAME_STYLE,
+ const wxString& name = wxFrameNameStr)
+ {
+ Init();
+ Create(parent, id, title, pos, size, style, name);
+ }
+ DECLARE_DYNAMIC_CLASS(wxFrame)
+ };
+
+ #endif
+#elif defined(__WXMGL__)
+ #include "wx/mgl/frame.h"