X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/107ea8f0694830232c7df4a1568b707111c04649..616c0d1f3ac084bb92f0a75dc48812e8647f1b22:/include/wx/datstrm.h diff --git a/include/wx/datstrm.h b/include/wx/datstrm.h index d83aa66993..6882bab2a3 100644 --- a/include/wx/datstrm.h +++ b/include/wx/datstrm.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: datstrm.h +// Name: wx/datstrm.h // Purpose: Data stream classes // Author: Guilhem Lavaux // Modified by: Mickael Gilabert @@ -78,7 +78,7 @@ public: wxDataInputStream& operator>>(float& f); void BigEndianOrdered(bool be_order) { m_be_order = be_order; } - + #if wxUSE_UNICODE void SetConv( const wxMBConv &conv ); wxMBConv *GetConv() const { return m_conv; } @@ -91,7 +91,7 @@ protected: wxMBConv *m_conv; #endif - DECLARE_NO_COPY_CLASS(wxDataInputStream) + wxDECLARE_NO_COPY_CLASS(wxDataInputStream); }; class WXDLLIMPEXP_BASE wxDataOutputStream @@ -169,7 +169,7 @@ protected: wxMBConv *m_conv; #endif - DECLARE_NO_COPY_CLASS(wxDataOutputStream) + wxDECLARE_NO_COPY_CLASS(wxDataOutputStream); }; #endif