]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/include/wx/ogl/ogldiag.h
more const correctness (slightly modified patch 1655991)
[wxWidgets.git] / contrib / include / wx / ogl / ogldiag.h
index 7a593f2466e0c3dcaa8a8bf9edd0132a7d88409b..ee0b249a4e6b728b35aca7dbacfacfbad8fc9684 100644 (file)
@@ -6,19 +6,20 @@
 // Created:     12/07/98
 // RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _OGL_OGLDIAG_H_
 #define _OGL_OGLDIAG_H_
 
-#if defined(__GNUG__) && !defined(__APPLE__)
-#pragma interface "ogldiag.h"
+#include "wx/ogl/basic.h"
+
+#if wxUSE_PROLOGIO
+#include "wx/deprecated/wxexpr.h"
 #endif
 
-#include <wx/ogl/basic.h>
 
-class wxDiagram: public wxObject
+class WXDLLIMPEXP_OGL wxDiagram: public wxObject
 {
  DECLARE_DYNAMIC_CLASS(wxDiagram)
 
@@ -62,7 +63,7 @@ public:
   inline void SetMouseTolerance(int tol) { m_mouseTolerance = tol; }
   inline int GetMouseTolerance() const { return m_mouseTolerance; }
   inline wxList *GetShapeList() const { return m_shapeList; }
-  inline int GetCount() const { return m_shapeList->Number(); }
+  inline int GetCount() const { return m_shapeList->GetCount(); }
 
   // Make sure all text that should be centred, is centred.
   void RecentreAll(wxDC& dc);
@@ -93,7 +94,7 @@ protected:
   wxList*               m_shapeList;
 };
 
-class wxLineCrossing: public wxObject
+class WXDLLIMPEXP_OGL wxLineCrossing: public wxObject
 {
 public:
     wxLineCrossing() { m_lineShape1 = NULL; m_lineShape2 = NULL; }
@@ -106,7 +107,7 @@ public:
     wxLineShape*    m_lineShape2;
 };
 
-class wxLineCrossings: public wxObject
+class WXDLLIMPEXP_OGL wxLineCrossings: public wxObject
 {
 public:
     wxLineCrossings();