1998-05-20 10:12:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: gauge.h
|
1998-06-28 07:32:14 -04:00
|
|
|
// Purpose: wxGauge header, includes gauge class headers as appropriate
|
1998-05-20 10:12:05 -04:00
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 19:52:45 -04:00
|
|
|
// Copyright: (c) Julian Smart
|
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:12:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 19:52:45 -04:00
|
|
|
#ifndef _WX_GAUGE_H_
|
|
|
|
#define _WX_GAUGE_H_
|
1998-05-20 10:12:05 -04:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "gauge.h"
|
|
|
|
#endif
|
|
|
|
|
1998-06-28 07:32:14 -04:00
|
|
|
#ifdef __WIN95__
|
|
|
|
#include "wx/msw/gauge95.h"
|
|
|
|
#define wxGauge wxGauge95
|
1998-09-12 13:31:48 -04:00
|
|
|
#define sm_classwxGauge sm_classwxGauge95
|
1998-06-28 07:32:14 -04:00
|
|
|
#else
|
1998-07-02 11:17:35 -04:00
|
|
|
#include "wx/msw/gaugemsw.h"
|
1998-06-28 07:32:14 -04:00
|
|
|
#define wxGauge wxGaugeMSW
|
1998-09-12 13:31:48 -04:00
|
|
|
#define sm_classwxGauge sm_classwxGaugeMSW
|
1998-05-20 10:12:05 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
1998-08-07 19:52:45 -04:00
|
|
|
// _WX_GAUGE_H_
|