public:
bool operator <(const CDAVProperty &rhs) const {return mPropertyName < rhs.mPropertyName;};
less-than operator
Name Description rhs the object comapred to
public:
bool operator ==(CDAVProperty &rhs) const {return mPropertyName==rhs.mPropertyName;};
equality operator
Name Description rhs the object comapred to
public:
CDAVProperty();
object constructor
public:
CDAVProperty(const char* name, const char* space=NULL);
object constructor
Name Description name the property's name space the XML namespace. If NULL, assumed to be in the DAV: namespace. Default value is NULL.
public:
std::string &GetNamespace();
access the XML namespace of this property
public:
std::string &GetPropertyName();
access the name of this property
public:
Boolean getIsInDAVNamespace();
returns true if this propery object refers to a property specfied in the WebDAV spec
public:
virtual ~CDAVProperty();
object destructor
© 1999-2000, Thomas Bednarz, Jr. (Last Updated 7/16/2000)