Lines Matching defs:operator
44 operator=(orig);
48 operator=(orig);
54 GUIDData & GUIDData::operator=(const GUIDData & orig) {
57 } // GUIDData::operator=(const GUIDData & orig)
68 GUIDData & GUIDData::operator=(const string & orig) {
123 } // GUIDData::operator=(const string & orig)
126 GUIDData & GUIDData::operator=(const char * orig) {
127 return operator=((string) orig);
128 } // GUIDData::operator=(const char * orig)
169 // Equality operator; returns 1 if the GUIDs are equal, 0 if they're unequal
170 int GUIDData::operator==(const GUIDData & orig) const {
172 } // GUIDData::operator==
174 // Inequality operator; returns 1 if the GUIDs are unequal, 0 if they're equal
175 int GUIDData::operator!=(const GUIDData & orig) const {
176 return !operator==(orig);
177 } // GUIDData::operator!=
214 ostream & operator<<(ostream & os, const GUIDData & data) {
219 } // GUIDData::operator<<()