]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/gdiobj.h
Some #include and #if wxUSE_XX things
[wxWidgets.git] / include / wx / gtk1 / gdiobj.h
index 2b6a5d1921378bd6550fd422decd02ca3a5e3fa8..ac8e8e94477b1a3364951d8b6d30cd28eff6dad6 100644 (file)
@@ -2,9 +2,8 @@
 // Name:        gdiobj.h
 // Purpose:
 // Author:      Robert Roebling
-// Created:     01/02/97
-// Id:
-// Copyright:   (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
+// Id:          $Id$
+// Copyright:   (c) 1998 Robert Roebling, Julian Smart
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #pragma interface
 #endif
 
-class WXDLLEXPORT wxGDIObject: public wxObject
+class wxGDIObject : public wxObject
 {
 DECLARE_DYNAMIC_CLASS(wxGDIObject)
- public:
-  inline wxGDIObject(void) { m_visible = FALSE; };
-  inline ~wxGDIObject(void) {};
 
-  virtual bool GetVisible(void) { return m_visible; }
-  virtual void SetVisible(bool v) { m_visible = v; }
+public:
+  inline wxGDIObject() { m_visible = FALSE; };
+  inline ~wxGDIObject() {};
+
+  virtual bool GetVisible() { return m_visible; }
+  virtual void SetVisible( bool visible ) { m_visible = visible; }
 
 protected:
-  bool m_visible; // Can a pointer to this object be safely taken?
-                 // - only if created within FindOrCreate...
+  bool m_visible; /* can a pointer to this object be safely taken?
+                   * - only if created within FindOrCreate... */
 };
 
 #endif