source: trunk/gsinstaller/launchApp.h@ 1537

Last change on this file since 1537 was 1498, checked in by cs025, 24 years ago

Further changes for uninstaller

  • Property svn:keywords set to Author Date Id Revision
File size: 497 bytes
Line 
1#ifndef _LAUNCHAPP_H_
2#define _LAUNCHAPP_H_
3#include <string>
4#include <map>
5using namespace std;
6
7#include "FilePath.h"
8
9typedef map<string, FilePath, less<string> > _exeMap;
10
11class launchApp
12{ private:
13 _exeMap exeMap;
14 string commandline;
15 public:
16 launchApp(FilePath &appsrc);
17 void platformApp(string platform, FilePath &appsrc);
18 void setCommandLine(string commands);
19 int run(bool test, int deftest, string prompt, string title, bool wait);
20};
21#endif
22
Note: See TracBrowser for help on using the repository browser.