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