// Created: 10/13/99
// RCS-ID: $Id$
// Copyright: (c) David Webster
-// Licence: wxWidgets licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_CURSOR_H_
{
public:
wxCursorRefData();
- ~wxCursorRefData() { Free(); }
+ virtual ~wxCursorRefData() { Free(); }
virtual void Free(void);
bool m_bDestroyCursor;
}; // end of CLASS wxCursorRefData
public:
wxCursor();
- // Copy constructors
- wxCursor(const wxCursor& rCursor) { Ref(rCursor); }
wxCursor(const wxImage& rImage);
wxCursor( const char acBits[]
);
wxCursor(int nCursorType);
inline ~wxCursor() { }
-
- inline wxCursor& operator = (const wxCursor& rCursor)
- {
- if (*this == rCursor)
- return (*this);
- Ref(rCursor);
- return *this;
- }
inline bool operator == (const wxCursor& rCursor) const { return m_refData == rCursor.m_refData; }
inline bool operator != (const wxCursor& rCursor) const { return m_refData != rCursor.m_refData; }