![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
Implemented by all classes which are children that can be added to ChildAddable. More...
#include <Child.h>
Public Member Functions | |
Child (T *toSet) | |
Constructor, registers the Child with the ChildAddable if the ChildAddable is not NULL. | |
~Child () | |
Destructor, unregisters the Child with the ChildAddabe if the ChildAddable is not NULL. | |
virtual T * | getChildAddable () const |
Returns the ChildAddable associated with this Child. | |
void | parentDestroyed () |
Called by the ChildAddable with which this Child is associated, if the ChildAddable is destroyed. It instructs this Child to forget that it had a ChildAddable. | |
bool | operator== (const T &rhs) const |
Equals operator. | |
Private Attributes | |
T * | myT |
The ChildAddable object associated with this Child. |
Implemented by all classes which are children that can be added to ChildAddable.