]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: gauge.h | |
da87a1ca | 3 | // Purpose: wxGauge header, includes gauge class headers as appropriate |
2bda0e17 KB |
4 | // Author: Julian Smart |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef __GAUGEH__ | |
13 | #define __GAUGEH__ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "gauge.h" | |
17 | #endif | |
18 | ||
da87a1ca JS |
19 | #ifdef __WIN95__ |
20 | #include "wx/msw/gauge95.h" | |
21 | #define wxGauge wxGauge95 | |
22 | #define classwxGauge classwxGauge95 | |
23 | #else | |
201812a8 | 24 | #include "wx/msw/gaugemsw.h" |
da87a1ca JS |
25 | #define wxGauge wxGaugeMSW |
26 | #define classwxGauge classwxGaugeMSW | |
2bda0e17 KB |
27 | #endif |
28 | ||
2bda0e17 KB |
29 | #endif |
30 | // __GAUGEH__ |