Added ComputeHistogram

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4955 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guillermo Rodriguez Garcia
1999-12-15 11:45:32 +00:00
parent 97507ccea7
commit c9d01afd82
2 changed files with 60 additions and 0 deletions

View File

@@ -282,6 +282,16 @@ public:
// wxImage
//-----------------------------------------------------------------------------
// GRG: Dic/99
class WXDLLEXPORT wxHNode
{
public:
unsigned long index;
unsigned long value;
};
class WXDLLEXPORT wxImage: public wxObject
{
DECLARE_DYNAMIC_CLASS(wxImage)
@@ -379,6 +389,10 @@ public:
static void CleanUpHandlers();
static void InitStandardHandlers();
// GRG: Dic/99
unsigned long ComputeHistogram( wxHashTable &h );
protected:
static wxList sm_handlers;