ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/AE/Installer/trunk/source/installer.h
(Generate patch)

Comparing AE/Installer/trunk/source/installer.h (file contents):
Revision 325 by iritscen, Tue May 26 18:51:14 2009 UTC vs.
Revision 355 by gumby, Thu Jun 18 22:30:30 2009 UTC

# 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

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)