From 17c684f6bb4573ce176a6b43bd497db42b629b24 Mon Sep 17 00:00:00 2001
From: computezrmle <57127745+computezrmle@users.noreply.github.com>
Date: Thu, 6 Mar 2025 10:41:35 +0100
Subject: [PATCH] Delete samples/vboxwrapper/gbac.h

---
 samples/vboxwrapper/gbac.h | 39 --------------------------------------
 1 file changed, 39 deletions(-)
 delete mode 100644 samples/vboxwrapper/gbac.h

diff --git a/samples/vboxwrapper/gbac.h b/samples/vboxwrapper/gbac.h
deleted file mode 100644
index 06bb5a8afe..0000000000
--- a/samples/vboxwrapper/gbac.h
+++ /dev/null
@@ -1,39 +0,0 @@
-
-#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
-- 
GitLab