--- AE/Installer/trunk/source/installer.h 2009/05/26 18:51:14 325 +++ AE/Installer/trunk/source/installer.h 2009/06/18 22:30:30 355 @@ -49,6 +49,14 @@ struct ModPackage cout << "\n"; } + bool operator < (const ModPackage &fs) + { return (name < fs.name);} + + bool operator > (const ModPackage &fs) + { return (name > fs.name);} + + bool operator == (const ModPackage &fs) + { return (name == fs.name);} }; #define METHOD_DEFS