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