--- AE/Installer/trunk/source/installer.h 2009/05/26 18:51:14 325 +++ AE/Installer/trunk/source/installer.h 2009/06/19 22:25:08 358 @@ -48,7 +48,15 @@ struct ModPackage cout << " Readme: " << readme << "\n"; cout << "\n"; } - + + bool operator < (const ModPackage &fs) const + { return (name < fs.name);} + + bool operator > (const ModPackage &fs) const + { return (name > fs.name);} + + bool operator == (const ModPackage &fs) const + { return (name == fs.name);} }; #define METHOD_DEFS