]>
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 SC |
16 | #ifdef __GNUG__ |
17 | #pragma implementation "radiobox.h" | |
18 | #endif | |
19 | ||
20 | #include "wx/radiobox.h" | |
03e11df5 GD |
21 | #include "wx/radiobut.h" |
22 | #include "wx/mac/uma.h" | |
e9576ca5 | 23 | |
2f1ae414 | 24 | #if !USE_SHARED_LIBRARY |
e9576ca5 | 25 | IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl) |
2f1ae414 | 26 | #endif |
e9576ca5 | 27 | |
1395ff56 UJ |
28 | #pragma mark - |
29 | #pragma mark ### Constructors & destructor ### | |
30 | ||
31 | //------------------------------------------------------------------------------------- | |
32 |