]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: radiobox.cpp | |
3 | // Purpose: wxRadioBox | |
4 | // Author: AUTHOR | |
5 | // Modified by: JS Lair (99/11/15) first implementation | |
6 | // Created: ??/??/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) AUTHOR | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | //------------------------------------------------------------------------------------- | |
13 | // headers | |
14 | //------------------------------------------------------------------------------------- | |
15 | ||
16 | #ifdef __GNUG__ | |
17 | #pragma implementation "radioboxbase.h" | |
18 | #pragma implementation "radiobox.h" | |
19 | #endif | |
20 | ||
21 | #include "wx/defs.h" | |
22 | ||
23 | #include "wx/radiobox.h" | |
24 | #include "wx/radiobut.h" | |
25 | #include "wx/mac/uma.h" | |
26 | ||
27 | #if !USE_SHARED_LIBRARY | |
28 | IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl) | |
29 | #endif | |
30 | ||
31 | #pragma mark - | |
32 | #pragma mark ### Constructors & destructor ### | |
33 | ||
34 | //------------------------------------------------------------------------------------- | |
35 |