| 229 | } |
| 230 | |
| 231 | bool ObjectIdentifier::operator<(const ObjectIdentifier& other) const |
| 232 | { |
| 233 | if (owner < other.owner) { |
| 234 | return true; |
| 235 | } |
| 236 | if (owner > other.owner) { |
| 237 | return false; |
| 238 | } |
| 239 | return toString() < other.toString(); |
| 240 | } |
| 241 | |
| 242 | int ObjectIdentifier::numComponents() const |
| 243 | { |