#ifndef _WX_ICON_H_
#define _WX_ICON_H_
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "icon.h"
-#endif
-
#include "wx/bitmap.h"
// Icon
// Copy constructors
wxIcon(const wxIcon& icon)
- { Ref(icon); }
+ : wxGDIObject()
+ {
+ Ref(icon);
+ }
wxIcon(const char **data);
wxIcon(char **data);
void SetHeight(int h);
void SetDepth(int d);
void SetOk(bool isOk);
-
+
WXHICON GetHICON() const ;
DECLARE_DYNAMIC_CLASS(wxIcon)