]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/carbon/apptbase.h
use native toolbar, font dialog and CG by default
[wxWidgets.git] / include / wx / mac / carbon / apptbase.h
CommitLineData
8cf73271
SC
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$
77ffb593 8// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
65571936 9// Licence: wxWindows licence
8cf73271
SC
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
19class WXDLLEXPORT wxAppTraits : public wxAppTraitsBase
20{
21public:
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