fb16dfecae
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
8 lines
522 B
Text
8 lines
522 B
Text
Object::Destroyer allows for the creation of "Destroy" handles. The
|
|
handle is "attached" to the circular relationship, but is not a part
|
|
of it. When the destroy handle falls out of scope, it will be cleaned
|
|
up correctly, and while being cleaned up, it will also force the data
|
|
structure it is attached to be destroyed as well. Object::Destroyer
|
|
can call a specified release method on an object (or method DESTROY by
|
|
default). Alternatively, it can execute an arbitrary user code passed
|
|
to constructor as a code reference.
|