git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21900
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// other miscellaneous helpers
// ---------------------------
- // under Mac this function does the same thing for console and GUI
- // applications so we can implement it directly in the base class
- virtual int GetOSVersion(int *verMaj, int *verMin);
};
#endif // _WX_MAC_APPTBASE_H_
class WXDLLEXPORT wxConsoleAppTraits : public wxConsoleAppTraitsBase
{
public:
+ // other miscellaneous helpers
+ // ---------------------------
+
+ virtual int GetOSVersion(int *verMaj, int *verMin);
};
#if wxUSE_GUI
class WXDLLEXPORT wxGUIAppTraits : public wxGUIAppTraitsBase
{
public:
+ // other miscellaneous helpers
+ // ---------------------------
+
+ virtual int GetOSVersion(int *verMaj, int *verMin);
};
#endif // wxUSE_GUI