summaryrefslogtreecommitdiffstats
path: root/wonkoclient/WonkoClient.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2017-03-10 23:34:03 +0100
committerPetr Mrázek <peterix@gmail.com>2017-04-07 00:20:01 +0200
commit1fbe03f982f130bf675b7f94dd9c06aee62da54f (patch)
treecbe08ea1debf18f10cc10cac77249b6e993c050f /wonkoclient/WonkoClient.h
parent7382360771f78e351740393262358bed3297d44c (diff)
downloadMultiMC-1fbe03f982f130bf675b7f94dd9c06aee62da54f.tar
MultiMC-1fbe03f982f130bf675b7f94dd9c06aee62da54f.tar.gz
MultiMC-1fbe03f982f130bf675b7f94dd9c06aee62da54f.tar.lz
MultiMC-1fbe03f982f130bf675b7f94dd9c06aee62da54f.tar.xz
MultiMC-1fbe03f982f130bf675b7f94dd9c06aee62da54f.zip
NOISSUE remove unused wonkoclient
Diffstat (limited to 'wonkoclient/WonkoClient.h')
-rw-r--r--wonkoclient/WonkoClient.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/wonkoclient/WonkoClient.h b/wonkoclient/WonkoClient.h
deleted file mode 100644
index e6b35805..00000000
--- a/wonkoclient/WonkoClient.h
+++ /dev/null
@@ -1,36 +0,0 @@
-//
-// Created by robotbrain on 3/27/16.
-//
-
-#pragma once
-
-#include <memory>
-#include <InstanceList.h>
-
-#if defined(MMCC)
-#undef MMCC
-#endif
-#define MMCC (WonkoClient::getInstance())
-
-class WonkoClient : public QObject {
-Q_OBJECT
-
-private:
- WonkoClient();
-
-public:
- static WonkoClient &getInstance();
-
- void registerLists();
- void initGlobalSettings();
-
- std::shared_ptr<InstanceList> instances() const {
- return m_instanceList;
- }
-
-private:
- std::shared_ptr<InstanceList> m_instanceList;
- std::shared_ptr<SettingsObject> m_settings;
-
- void runTask(Task *pTask);
-};