X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c801d85f158c4cba50b588807daabdcbd0ed3853..412e4edfb1174c68fab706abdf735b1ca6fe56f2:/include/wx/gtk/gdiobj.h?ds=sidebyside diff --git a/include/wx/gtk/gdiobj.h b/include/wx/gtk/gdiobj.h index 2b6a5d1921..23e4077cc7 100644 --- a/include/wx/gtk/gdiobj.h +++ b/include/wx/gtk/gdiobj.h @@ -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 ///////////////////////////////////////////////////////////////////////////// @@ -18,19 +17,20 @@ #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) {}; +public: + inline wxGDIObject() { m_visible = FALSE; }; + inline ~wxGDIObject() {} - virtual bool GetVisible(void) { return m_visible; } - virtual void SetVisible(bool v) { m_visible = v; } + 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... */ +private: + DECLARE_DYNAMIC_CLASS(wxGDIObject) }; #endif