X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6aa89a22b8e47000c98bff05c6f545f331f1c353..686ca1b5d4867bca6c82a82078fd26291c6e6659:/samples/docview/doc.h diff --git a/samples/docview/doc.h b/samples/docview/doc.h index c123e6a9ea..af9b272fbe 100644 --- a/samples/docview/doc.h +++ b/samples/docview/doc.h @@ -9,10 +9,6 @@ // Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -// #pragma interface -#endif - #ifndef __DOCSAMPLEH__ #define __DOCSAMPLEH__ @@ -34,11 +30,11 @@ class DoodleSegment: public wxObject { public: wxList lines; - - DoodleSegment(void); - DoodleSegment(DoodleSegment& seg); + + DoodleSegment(void){}; + DoodleSegment(const DoodleSegment& seg); ~DoodleSegment(void); - + void Draw(wxDC *dc); #if wxUSE_STD_IOSTREAM wxSTD ostream& SaveObject(wxSTD ostream& text_stream); @@ -47,7 +43,7 @@ public: wxOutputStream& SaveObject(wxOutputStream& stream); wxInputStream& LoadObject(wxInputStream& stream); #endif - + }; class DrawingDocument: public wxDocument @@ -56,10 +52,10 @@ class DrawingDocument: public wxDocument private: public: wxList doodleSegments; - - DrawingDocument(void); + + DrawingDocument(void){}; ~DrawingDocument(void); - + #if wxUSE_STD_IOSTREAM wxSTD ostream& SaveObject(wxSTD ostream& text_stream); wxSTD istream& LoadObject(wxSTD istream& text_stream); @@ -67,7 +63,7 @@ public: wxOutputStream& SaveObject(wxOutputStream& stream); wxInputStream& LoadObject(wxInputStream& stream); #endif - + inline wxList& GetDoodleSegments(void) const { return (wxList&) doodleSegments; }; }; @@ -83,7 +79,7 @@ protected: public: DrawingCommand(const wxString& name, int cmd, DrawingDocument *ddoc, DoodleSegment *seg); ~DrawingCommand(void); - + bool Do(void); bool Undo(void); }; @@ -101,7 +97,7 @@ wxSTD istream& LoadObject(wxSTD istream& stream); virtual bool OnOpenDocument(const wxString& filename); virtual bool IsModified(void) const; virtual void Modify(bool mod); - + TextEditDocument(void) {} ~TextEditDocument(void) {} };