Skip to content
Snippets Groups Projects
Unverified Commit 17c684f6 authored by computezrmle's avatar computezrmle Committed by GitHub
Browse files

Delete samples/vboxwrapper/gbac.h

parent dc15fe36
Branches
No related tags found
No related merge requests found
#ifndef _GBAC_H_
#define _GBAC_H_
#include <vector>
#include <string>
#include <zlib.h>
using namespace std;
class GBAC
{
private:
char *hostdir;
// TODO: this is actually not needed, '/' works on windows as well
char *dirsep;
vector<string> environment;
char **argv;
int argc;
int doGunzip(const char* strGZ, const char* strInput, bool bKeep = true);
int hasEnding(std::string const &fullString, std::string const &ending);
public:
GBAC();
~GBAC();
int init(int argc_, char **argv_);
int parse(const char* file);
int prepareHostSharedDir();
int copyOutputFiles();
int copyLogFiles();
int copyDebugLog();
int getExitStatus(int &status);
int prepareVa(std::string &strVaFilename);
int printVersion();
};
extern GBAC gbac;
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment