#include <pdns.h>
Inheritance diagram for PDNS::SRVRecord:
Public Member Functions | |
SRVRecord () | |
Comparison | Compare (const PObject &obj) const |
Compare the two objects and return their relative rank. | |
void | PrintOn (ostream &strm) const |
Output the contents of the object to the stream. | |
Public Attributes | |
PString | hostName |
PIPSocket::Address | hostAddress |
PBoolean | used |
WORD | port |
WORD | priority |
WORD | weight |
PDNS::SRVRecord::SRVRecord | ( | ) | [inline] |
Comparison PDNS::SRVRecord::Compare | ( | const PObject & | obj | ) | const [virtual] |
Compare the two objects and return their relative rank.
This function is usually overridden by descendent classes to yield the ranking according to the semantics of the object.
The default function is to use the CompareObjectMemoryDirect()
function to do a byte wise memory comparison of the two objects.
LessThan
, EqualTo
or GreaterThan
according to the relative rank of the objects. Reimplemented from PObject.
void PDNS::SRVRecord::PrintOn | ( | ostream & | strm | ) | const [virtual] |
Output the contents of the object to the stream.
The exact output is dependent on the exact semantics of the descendent class. This is primarily used by the standard operator<<
function.
The default behaviour is to print the class name.
Reimplemented from PObject.