1///////////////////////////////////////////////////////////////////////////////
2// Name:        wx/msdos/apptrait.h
3// Author:      Michael Wetherell
4// RCS-ID:      $Id: apptrait.h 40807 2006-08-24 21:18:18Z MW $
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
12class wxConsoleAppTraits : public wxConsoleAppTraitsBase
13{
14public:
15};
16
17#if wxUSE_GUI
18
19class wxGUIAppTraits : public wxGUIAppTraitsBase
20{
21public:
22    virtual wxPortId GetToolkitVersion(int *majVer, int *minVer) const;
23};
24
25#endif // wxUSE_GUI
26
27#endif // _WX_MSDOS_APPTRAIT_H_
28