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 460 by iritscen, Mon Jun 29 19:23:42 2009 UTC vs.
Revision 461 by gumby, Fri Oct 9 03:22:08 2009 UTC

# Line 1 | Line 1
1 < #pragma once
1 > #pragma once
2   /* AE/Mod Installer header file */
3   #ifndef DOUBLE_HEADER
4   #define DOUBLE_HEADER
# Line 25 | Line 25 | struct ModPackage
25          bool    hasOnis;
26          bool    hasDeltas;
27          bool    hasBSL;
28 +        bool    hasAddon;
29          bool    hasDats;
30          string  category;
31          string  creator;
# Line 32 | Line 33 | struct ModPackage
33          string  readme;
34          bool    globalNeeded;
35          ModPackage();
36 +
37          void doOutput()
38          {
39                  cout << "Mod: " << name; cout << "\n"; // remove this when done
# Line 69 | Line 71 | ModPackage::ModPackage()
71          hasOnis = false;
72          hasDeltas = false;
73          hasBSL = false;
74 +        hasAddon = false;
75          hasDats = false;
76          category = "";
77          creator = "";
# Line 97 | Line 100 | void writeInstalledMods( vector<string>
100   void setStatusArea( string );
101   void setProgressBar( int );
102  
103 + void copyBSL( string, vector<string>, ModPackage );
104 +
105   //New copy(path, path) function. Too lazy to implement my own, this is basically how I would have done it though.
106   //No, really. :)
107   //Move to utilities.cpp when the time comes.

Diff Legend

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