Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8144 in orxonox.OLD for branches/gui/src/lib/util


Ignore:
Timestamp:
Jun 4, 2006, 7:55:55 PM (19 years ago)
Author:
bensch
Message:

gui: better debugging system

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/lib/util/count_pointer.h

    r6669 r8144  
    1111    explicit CountPointer(X* p = 0) // allocate a new counter
    1212        : itsCounter(0) { if (p) itsCounter = new counter(p); }
    13     ~CountPointer() { release(); }
     13    virtual ~CountPointer() { release(); }
    1414    CountPointer(const CountPointer& r) { acquire(r.itsCounter); }
    1515    CountPointer& operator=(const CountPointer& r)
Note: See TracChangeset for help on using the changeset viewer.