Ignore:
Timestamp:
Apr 4, 2009, 6:13:36 AM (16 years ago)
Author:
gumby
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • AE/Installer/trunk/source/methods.h

    r286 r290  
    11#include <string>
     2#include <vector>
     3
     4
     5using namespace std;
     6
     7struct ModPackage {
     8        bool isInstalled; //replace with function
     9        string *name;
     10};
     11
    212int mainMenu();
    3 using namespace std;
     13vector<ModPackage> getPackages();
     14ModPackage fileToModPackage(FILE&);
    415
    516void installPackages();
     
    920bool getDirectoryContents(char , char &);
    1021
    11 struct ModPackage {
    12         bool isInstalled; //replace with function
    13         string *name;
    14 };
Note: See TracChangeset for help on using the changeset viewer.