X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dd107c50be43e8d4dbdba20df162faf119a3781c..052d2fc5818243dadbc1ec54b1120e295304fc55:/samples/docvwmdi/doc.h?ds=sidebyside diff --git a/samples/docvwmdi/doc.h b/samples/docvwmdi/doc.h index b6c4a692a3..4b01bc5a59 100644 --- a/samples/docvwmdi/doc.h +++ b/samples/docvwmdi/doc.h @@ -5,8 +5,8 @@ // Modified by: // Created: 04/01/98 // RCS-ID: $Id$ -// Copyright: (c) Julian Smart and Markus Holzem -// Licence: wxWindows license +// Copyright: (c) Julian Smart +// Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// #ifdef __GNUG__ @@ -17,6 +17,7 @@ #define __DOCSAMPLEH__ #include "wx/docview.h" +#include "wx/cmdproc.h" // Plots a line from one point to the other class DoodleLine: public wxObject @@ -34,12 +35,12 @@ class DoodleSegment: public wxObject public: wxList lines; - DoodleSegment(void); + DoodleSegment(void){}; DoodleSegment(DoodleSegment& seg); ~DoodleSegment(void); void Draw(wxDC *dc); - + #if wxUSE_STD_IOSTREAM wxSTD ostream& SaveObject(wxSTD ostream& text_stream); wxSTD istream& LoadObject(wxSTD istream& text_stream); @@ -55,8 +56,8 @@ class DrawingDocument: public wxDocument private: public: wxList doodleSegments; - - DrawingDocument(void); + + DrawingDocument(void){}; ~DrawingDocument(void); #if wxUSE_STD_IOSTREAM