| 70 | } |
| 71 | |
| 72 | bool String::operator<(const String& rhs) const |
| 73 | { |
| 74 | return (fileOffset < rhs.fileOffset) |
| 75 | || (fileOffset == rhs.fileOffset && type < rhs.getType()) |
| 76 | || (fileOffset == rhs.fileOffset && type == rhs.type && content < rhs.content); |
| 77 | } |
| 78 | |
| 79 | bool String::operator==(const String& rhs) const |
| 80 | { |