From: Julian Smart Date: Thu, 5 Jul 2001 20:55:06 +0000 (+0000) Subject: #ifdefed out some redundant base classes so DLL version compiles X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a6a193a08dc0d44190251a6986a179929a2a31a3 #ifdefed out some redundant base classes so DLL version compiles git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10853 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/bitmap.h b/include/wx/bitmap.h index 4a1d3b0296..d05b3949db 100644 --- a/include/wx/bitmap.h +++ b/include/wx/bitmap.h @@ -32,6 +32,9 @@ class WXDLLEXPORT wxImage; class WXDLLEXPORT wxMask; class WXDLLEXPORT wxPalette; +#if !defined(__WXMSW__) + +// Only used by some ports // ---------------------------------------------------------------------------- // wxBitmapHandler: class which knows how to create/load/save bitmaps in // different formats @@ -69,8 +72,6 @@ protected: DECLARE_ABSTRACT_CLASS(wxBitmapHandlerBase) }; - - class WXDLLEXPORT wxBitmapBase : public wxGDIObject { public: @@ -149,8 +150,7 @@ protected: DECLARE_ABSTRACT_CLASS(wxBitmapBase) }; - - +#endif #if defined(__WXMSW__) #include "wx/msw/bitmap.h"