prevent circular reference counts
This commit is contained in:
parent
ef25e2597d
commit
fdda2ae7b6
|
|
@ -21,6 +21,15 @@
|
|||
|
||||
TypeHandle MouseWatcherGroup::_type_handle;
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: MouseWatcherGroup::Destructor
|
||||
// Access: Public, Virtual
|
||||
// Description:
|
||||
////////////////////////////////////////////////////////////////////
|
||||
MouseWatcherGroup::
|
||||
~MouseWatcherGroup() {
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: MouseWatcherGroup::add_region
|
||||
// Access: Published
|
||||
|
|
|
|||
|
|
@ -32,6 +32,9 @@
|
|||
// that may be managed as a group.
|
||||
////////////////////////////////////////////////////////////////////
|
||||
class EXPCL_PANDA MouseWatcherGroup : virtual public ReferenceCount {
|
||||
public:
|
||||
virtual ~MouseWatcherGroup();
|
||||
|
||||
PUBLISHED:
|
||||
bool add_region(MouseWatcherRegion *region);
|
||||
bool has_region(MouseWatcherRegion *region) const;
|
||||
|
|
|
|||
Loading…
Reference in New Issue