]>
Commit | Line | Data |
---|---|---|
9aecec9a MW |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/msdos/apptrait.h | |
3 | // Author: Michael Wetherell | |
4 | // RCS-ID: $Id$ | |
5 | // Copyright: (c) 2006 Michael Wetherell | |
6 | // Licence: wxWindows licence | |
7 | /////////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | #ifndef _WX_MSDOS_APPTRAIT_H_ | |
10 | #define _WX_MSDOS_APPTRAIT_H_ | |
11 | ||
12 | class wxConsoleAppTraits : public wxConsoleAppTraitsBase | |
13 | { | |
14 | public: | |
15 | }; | |
16 | ||
17 | #if wxUSE_GUI | |
18 | ||
19 | class wxGUIAppTraits : public wxGUIAppTraitsBase | |
20 | { | |
21 | public: | |
22 | virtual wxPortId GetToolkitVersion(int *majVer, int *minVer) const; | |
23 | }; | |
24 | ||
25 | #endif // wxUSE_GUI | |
26 | ||
27 | #endif // _WX_MSDOS_APPTRAIT_H_ |