Changeset 358 for AE/Installer/trunk/source/installer.h
- Timestamp:
- Jun 20, 2009, 12:25:08 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/Installer/trunk/source/installer.h
r355 r358 49 49 cout << "\n"; 50 50 } 51 52 bool operator < (const ModPackage &fs) 51 52 bool operator < (const ModPackage &fs) const 53 53 { return (name < fs.name);} 54 54 55 bool operator > (const ModPackage &fs) 55 bool operator > (const ModPackage &fs) const 56 56 { return (name > fs.name);} 57 57 58 bool operator == (const ModPackage &fs) 58 bool operator == (const ModPackage &fs) const 59 59 { return (name == fs.name);} 60 60 };
Note:
See TracChangeset
for help on using the changeset viewer.