#include <Identifier.hpp>
Inheritance diagram for corelinux::Identifier:

Public Member Functions | |
| Identifier (void) | |
| Default Constructor. | |
| Identifier (IdentifierCref) | |
| Copy Constructor. | |
| virtual | ~Identifier (void) |
| Virtual Destructor. | |
| IdentifierRef | operator= (IdentifierCref) |
| Assignment operator overload. | |
| bool | operator== (IdentifierCref) const |
| Equality operator overload calls isEqual virtual method. | |
| bool | operator!= (IdentifierCref) const |
| Non-equality operator overload returns !isEqual(aRef). | |
| bool | operator< (IdentifierCref) const |
| Less than operator overload. | |
| bool | operator<= (IdentifierCref) const |
| Less than or equal operator overload. | |
| bool | operator> (IdentifierCref) const |
| Greater than operator overload. | |
| bool | operator>= (IdentifierCref) const |
| Greater than or equal operator overload. | |
Protected Member Functions | |
| virtual bool | isEqual (IdentifierCref) const |
| Equality method. | |
| virtual bool | isLessThan (IdentifierCref) const |
| Less than method. | |
| virtual bool | isLessThanOrEqual (IdentifierCref) const |
| Less than or equal method. | |
| virtual bool | isGreaterThan (IdentifierCref) const |
| Greater than method. | |
| virtual bool | isGreaterThanOrEqual (IdentifierCref) const |
| Greater than or equal method. | |
Derivations implement ConcreteIdentifiers (Strings, Widgets, UUID, whatever). The logical operators call virtual methods which derivations should define.as all the defaults return true.
|
|
Copy Constructor.
|
|
|
Equality method.
Reimplemented in corelinux::ScalarIdentifier< ScalarType >. |
|
|
Greater than method.
Reimplemented in corelinux::ScalarIdentifier< ScalarType >. |
|
|
Greater than or equal method.
Reimplemented in corelinux::ScalarIdentifier< ScalarType >. |
|
|
Less than method.
Reimplemented in corelinux::ScalarIdentifier< ScalarType >. |
|
|
Less than or equal method.
Reimplemented in corelinux::ScalarIdentifier< ScalarType >. |
|
|
Non-equality operator overload returns !isEqual(aRef).
|
|
|
Less than operator overload. Calls isLessThan virtual method.
|
|
|
Less than or equal operator overload. Calls isLessThanOrEqual virtual method.
|
|
|
Assignment operator overload.
|
|
|
Equality operator overload calls isEqual virtual method.
|
|
|
Greater than operator overload. Calls isGreaterThan virtual method.
|
|
|
Greater than or equal operator overload. Calls isGreaterThanOrEqual virtual method.
|