]> git.saurik.com Git - wxWidgets.git/blame - src/mac/spinctrl.cpp
added spinctrl implementation
[wxWidgets.git] / src / mac / spinctrl.cpp
CommitLineData
a5bc50ee
GD
1/////////////////////////////////////////////////////////////////////////////
2// Name: spinbutt.cpp
3// Purpose: wxSpinCtrl
4// Author: Robert
5// Modified by: Mark Newsam (Based on GTK file)
6// RCS-ID: $Id$
7// Copyright: (c) Robert Roebling
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifdef __GNUG__
12#pragma implementation "spinctlg.h"
13#endif
14
15#include "wx/spinctrl.h"
16
17#if wxUSE_SPINCTRL
18
19
20//-----------------------------------------------------------------------------
21// wxSpinCtrl
22//-----------------------------------------------------------------------------
23
24#if !USE_SHARED_LIBRARY
25 IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrl,wxTextCtrl)
26#endif
27
28
29#endif // wxUSE_SPINCTRL
30