]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/docview/doc.h
only check for lib directory for architectures which have multiple ABIs (Solaris...
[wxWidgets.git] / samples / docview / doc.h
index c123e6a9eaee5ab242ac5464f5d457a9b1773f04..fa372463b3221fc9f248b9278dfd4287d746c30c 100644 (file)
@@ -34,11 +34,11 @@ 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);
@@ -47,7 +47,7 @@ public:
     wxOutputStream& SaveObject(wxOutputStream& stream);
     wxInputStream& LoadObject(wxInputStream& stream);
 #endif
-    
+
 };
 
 class DrawingDocument: public wxDocument
@@ -56,10 +56,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 +67,7 @@ public:
     wxOutputStream& SaveObject(wxOutputStream& stream);
     wxInputStream& LoadObject(wxInputStream& stream);
 #endif
-    
+
     inline wxList& GetDoodleSegments(void) const { return (wxList&) doodleSegments; };
 };
 
@@ -83,7 +83,7 @@ protected:
 public:
     DrawingCommand(const wxString& name, int cmd, DrawingDocument *ddoc, DoodleSegment *seg);
     ~DrawingCommand(void);
-    
+
     bool Do(void);
     bool Undo(void);
 };
@@ -101,7 +101,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) {}
 };