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 358 by gumby, Fri Jun 19 22:25:08 2009 UTC

# Line 48 | Line 48 | struct ModPackage
48                  cout << "       Readme: " << readme << "\n";
49                  cout << "\n";
50          }
51 <        
51 >
52 >             bool operator < (const ModPackage &fs) const
53 >     { return (name < fs.name);}
54 >
55 >     bool operator > (const ModPackage &fs) const
56 >     { return (name > fs.name);}
57 >
58 >     bool operator == (const ModPackage &fs) const
59 >     { return (name == fs.name);}
60   };
61  
62   #define METHOD_DEFS

Diff Legend

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