diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-06-07 21:10:18 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-06-07 21:10:18 +0200 |
commit | 6d7bff2476459049f4f554291a680e0f6003ea66 (patch) | |
tree | 4202e9f1cd843197648fec93b48a5bc88407dc2e /mmc_updater/src/MacBundle.h | |
parent | 977e11ef8d6780b173ad5ca6d13e29e721d0c6a0 (diff) | |
download | PrismLauncher-6d7bff2476459049f4f554291a680e0f6003ea66.tar.gz PrismLauncher-6d7bff2476459049f4f554291a680e0f6003ea66.tar.bz2 PrismLauncher-6d7bff2476459049f4f554291a680e0f6003ea66.zip |
GH-1060 remove updater code
Diffstat (limited to 'mmc_updater/src/MacBundle.h')
-rw-r--r-- | mmc_updater/src/MacBundle.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/mmc_updater/src/MacBundle.h b/mmc_updater/src/MacBundle.h deleted file mode 100644 index 2b119d8f..00000000 --- a/mmc_updater/src/MacBundle.h +++ /dev/null @@ -1,35 +0,0 @@ -#pragma once - -#include <string> - -/** Class for creating minimal Mac app bundles. */ -class MacBundle -{ - public: - /** Create a MacBundle instance representing the bundle - * in <path>/<appName>.app - */ - MacBundle(const std::string& path, const std::string& appName); - - /** Create a simple Mac bundle. - * - * @param infoPlist The content of the Info.plist file - * @param icon The content of the app icon - * @param exePath The path of the file to use for the main app in the bundle. - */ - void create(const std::string& infoPlist, - const std::string& icon, - const std::string& exePath); - - /** Returns the path of the main executable within the Mac bundle. */ - std::string executablePath() const; - - /** Returns the path of the bundle */ - std::string bundlePath() const; - - private: - std::string m_path; - std::string m_appName; - std::string m_exePath; -}; - |