| # | Line 49 | Line 49 | struct ModPackage | |
|---|---|---|
| 49 | cout << "\n"; | |
| 50 | } | |
| 51 | ||
| 52 | + | bool operator < (const ModPackage &fs) | 
| 53 | + | { return (name < fs.name);} | 
| 54 | + | |
| 55 | + | bool operator > (const ModPackage &fs) | 
| 56 | + | { return (name > fs.name);} | 
| 57 | + | |
| 58 | + | bool operator == (const ModPackage &fs) | 
| 59 | + | { return (name == fs.name);} | 
| 60 | }; | |
| 61 | ||
| 62 | #define METHOD_DEFS | |
| – | Removed lines | 
| + | Added lines | 
| < | Changed lines (old) | 
| > | Changed lines (new) |