]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/apptrait.h
removed WXUSINGDLL_FOO, one WXUSINGDLL is enough
[wxWidgets.git] / include / wx / mac / apptrait.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mac/apptrait.h
3 // Purpose: standard implementations of wxAppTraits for MacOS
4 // Author: Vadim Zeitlin
5 // Modified by: Stefan Csomor
6 // Created: 23.06.2003
7 // RCS-ID: $Id$
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_MAC_APPTRAIT_H_
13 #define _WX_MAC_APPTRAIT_H_
14
15 // ----------------------------------------------------------------------------
16 // wxGUI/ConsoleAppTraits: must derive from wxAppTraits, not wxAppTraitsBase
17 // ----------------------------------------------------------------------------
18
19 class WXDLLEXPORT wxConsoleAppTraits : public wxConsoleAppTraitsBase
20 {
21 public:
22 };
23
24 #if wxUSE_GUI
25
26 class WXDLLEXPORT wxGUIAppTraits : public wxGUIAppTraitsBase
27 {
28 public:
29 };
30
31 #endif // wxUSE_GUI
32
33 #endif // _WX_MAC_APPTRAIT_H_
34