]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/apptbase.h
added WXDLLIMPEXP_FWD_FOO macros in addition to WXDLLIMPEXP_FOO for use with forward...
[wxWidgets.git] / include / wx / mac / carbon / apptbase.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mac/apptbase.h
3 // Purpose: declaration of wxAppTraits for Mac systems
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@wxwidgets.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_MAC_APPTBASE_H_
13 #define _WX_MAC_APPTBASE_H_
14
15 // ----------------------------------------------------------------------------
16 // wxAppTraits: the Mac version adds extra hooks needed by Mac code
17 // ----------------------------------------------------------------------------
18
19 class WXDLLEXPORT wxAppTraits : public wxAppTraitsBase
20 {
21 public:
22 // wxExecute() support methods
23 // ---------------------------
24
25 // TODO
26
27 // wxThread helpers
28 // ----------------
29
30
31 // TODO
32
33 // other miscellaneous helpers
34 // ---------------------------
35
36 };
37
38 #endif // _WX_MAC_APPTBASE_H_
39