apptraits in line for carbon and mach-o

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21900 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2003-07-11 20:17:15 +00:00
parent d314acc0ba
commit 2cf38c9783
2 changed files with 8 additions and 3 deletions

View File

@@ -33,9 +33,6 @@ public:
// 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_

View File

@@ -19,6 +19,10 @@
class WXDLLEXPORT wxConsoleAppTraits : public wxConsoleAppTraitsBase
{
public:
// other miscellaneous helpers
// ---------------------------
virtual int GetOSVersion(int *verMaj, int *verMin);
};
#if wxUSE_GUI
@@ -26,6 +30,10 @@ public:
class WXDLLEXPORT wxGUIAppTraits : public wxGUIAppTraitsBase
{
public:
// other miscellaneous helpers
// ---------------------------
virtual int GetOSVersion(int *verMaj, int *verMin);
};
#endif // wxUSE_GUI