#include <abstract.h>
Inheritance diagram for ElementAbstract:
The element class of \Ref{FieldAbstract}. This element has no knowledge of the field to which it belongs. All operations and functions requiring knolwedge of the field, such as addition and other arithmetic operations, are supplied by the field and not the element class.
Public Methods | |
virtual ElementAbstract * | clone (void) const=0 |
virtual ElementAbstract & | operator= (const ElementAbstract &x)=0 |
virtual | ~ElementAbstract (void) |
Protected Methods | |
ElementAbstract (void) |
|
Destructor. |
|
Default Constructor. Required by derived classes, but protected because this class should never be constructed by itself. |
|
Virtual copy constructor. Required because constructors cannot be virtual. Passes construction on to derived classes. Purely virtual.
Implemented in ElementEnvelope. |
|
Assignment operator. Purely virtual.
Implemented in ElementEnvelope. |