]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: icon.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Created: 01/02/97 | |
6 | // Id: | |
7 | // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifdef __GNUG__ | |
12 | #pragma implementation "icon.h" | |
13 | #endif | |
14 | ||
15 | #include "wx/icon.h" | |
16 | ||
17 | //----------------------------------------------------------------------------- | |
18 | // wxIcon | |
19 | //----------------------------------------------------------------------------- | |
20 | ||
21 | IMPLEMENT_DYNAMIC_CLASS(wxIcon,wxBitmap) | |
22 | ||
23 | wxIcon::wxIcon( char **bits, int WXUNUSED(width), int WXUNUSED(height) ) : | |
24 | wxBitmap( bits ) | |
25 | { | |
26 | }; | |
27 |