From: Chris Elliott Date: Wed, 7 May 2003 09:14:14 +0000 (+0000) Subject: remove if defs for DigitalMars as suggested by Vadim X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f0fc6958065fc93b8a2d7c8d51d23f7e69bffbdd remove if defs for DigitalMars as suggested by Vadim git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20522 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/rawbmp.h b/include/wx/rawbmp.h index a9199e541c..b7f3b01c30 100644 --- a/include/wx/rawbmp.h +++ b/include/wx/rawbmp.h @@ -101,15 +101,9 @@ - type which can contain the full pixel value (all channels) */ -#ifdef __DIGITALMARS__ template -#else -template -#endif struct WXDLLEXPORT wxPixelFormat { @@ -629,49 +623,28 @@ struct WXDLLEXPORT wxPixelDataOut }; }; -#ifdef __DIGITALMARS__ -template > -class wxPixelData : - public wxPixelDataOut:: wxPixelDataIn -{ -public: - wxPixelData(Image& image) - : wxPixelDataOut:: wxPixelDataIn(image) - { - } - - wxPixelData(Image& i, const wxPoint& pt, const wxSize& sz) - : wxPixelDataOut:: wxPixelDataIn(i, pt, sz) - { - } - wxPixelData(Image& i, const wxRect& rect) - : wxPixelDataOut:: wxPixelDataIn(i, rect) - { - } -}; -#else // not __DIGITALMARS__ template > class wxPixelData : - public wxPixelDataOut::template wxPixelDataIn + public wxPixelDataOut::wxPixelDataIn { public: wxPixelData(Image& image) - : wxPixelDataOut::template wxPixelDataIn(image) + : wxPixelDataOut::wxPixelDataIn(image) { } wxPixelData(Image& i, const wxPoint& pt, const wxSize& sz) - : wxPixelDataOut::template wxPixelDataIn(i, pt, sz) + : wxPixelDataOut::wxPixelDataIn(i, pt, sz) { } wxPixelData(Image& i, const wxRect& rect) - : wxPixelDataOut::template wxPixelDataIn(i, rect) + : wxPixelDataOut::wxPixelDataIn(i, rect) { } }; -#endif // __DIGITALMARS__ + // some "predefined" pixel data classes typedef wxPixelData wxImagePixelData;