X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9a83f860948059b0273b5cc6d9e43fadad3ebfca..e91e1e3d5cab263883c1cee1689c898b8f7c4ecd:/include/wx/animdecod.h diff --git a/include/wx/animdecod.h b/include/wx/animdecod.h index 1c6cb20d1f..58177e68fd 100644 --- a/include/wx/animdecod.h +++ b/include/wx/animdecod.h @@ -2,7 +2,6 @@ // Name: wx/animdecod.h // Purpose: wxAnimationDecoder // Author: Francesco Montorsi -// CVS-ID: $Id$ // Copyright: (c) 2006 Francesco Montorsi // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -19,7 +18,6 @@ #include "wx/log.h" #include "wx/stream.h" -class WXDLLIMPEXP_FWD_BASE wxInputStream; class WXDLLIMPEXP_FWD_CORE wxImage; /* @@ -95,11 +93,11 @@ public: } virtual bool Load( wxInputStream& stream ) = 0; - + bool CanRead( wxInputStream& stream ) const { // NOTE: this code is the same of wxImageHandler::CallDoCanRead - + if ( !stream.IsSeekable() ) return false; // can't test unseekable stream @@ -157,7 +155,7 @@ protected: // this function should modify the stream current position without taking care // of restoring it since CanRead() will do it. virtual bool DoCanRead(wxInputStream& stream) const = 0; - + wxSize m_szAnimation; unsigned int m_nFrames;