+#ifdef __WXUNIVERSAL__
+ #include "wx/univ/frame.h"
+#else // !__WXUNIVERSAL__
+ #ifdef wxFrameNative
+ class WXDLLEXPORT wxFrame : public wxFrameNative
+ {
+ 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 // wxFrameNative
+#endif // __WXUNIVERSAL__/!__WXUNIVERSAL__
+