1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mac/apptrait.h
3 // Purpose: standard implementations of wxAppTraits for MacOS
4 // Author: Vadim Zeitlin
5 // Modified by: Stefan Csomor
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MAC_APPTRAIT_H_
13 #define _WX_MAC_APPTRAIT_H_
15 // ----------------------------------------------------------------------------
16 // wxGUI/ConsoleAppTraits: must derive from wxAppTraits, not wxAppTraitsBase
17 // ----------------------------------------------------------------------------
19 class WXDLLEXPORT wxConsoleAppTraits
: public wxConsoleAppTraitsBase
22 // other miscellaneous helpers
23 // ---------------------------
25 virtual wxToolkitInfo
& GetToolkitInfo();
30 class WXDLLEXPORT wxGUIAppTraits
: public wxGUIAppTraitsBase
33 // other miscellaneous helpers
34 // ---------------------------
36 virtual wxToolkitInfo
& GetToolkitInfo();
41 #endif // _WX_MAC_APPTRAIT_H_