X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4055ed8281971e3d35bf04177193c27043d42ed1..23c06cde5df85dbfd94e92e90de225618191153f:/include/wx/palette.h?ds=sidebyside diff --git a/include/wx/palette.h b/include/wx/palette.h index 30aa385cbf..b04f513466 100644 --- a/include/wx/palette.h +++ b/include/wx/palette.h @@ -1,3 +1,14 @@ +///////////////////////////////////////////////////////////////////////////// +// Name: wx/palette.h +// Purpose: Common header and base class for wxPalette +// Author: Julian Smart +// Modified by: +// Created: +// RCS-ID: $Id$ +// Copyright: (c) Julian Smart +// Licence: wxWindows Licence +///////////////////////////////////////////////////////////////////////////// + #ifndef _WX_PALETTE_H_BASE_ #define _WX_PALETTE_H_BASE_ @@ -8,14 +19,15 @@ #include "wx/object.h" #include "wx/gdiobj.h" -// wxBrushBase +// wxPaletteBase class WXDLLEXPORT wxPaletteBase: public wxGDIObject { public: virtual ~wxPaletteBase() { } - virtual bool Ok() const = 0; - virtual int GetColoursCount() const { wxFAIL_MSG( _T("not implemented") ); return 0; }; + virtual bool Ok() const { return IsOk(); } + virtual bool IsOk() const = 0; + virtual int GetColoursCount() const { wxFAIL_MSG( _T("not implemented") ); return 0; } }; #if defined(__WXPALMOS__)