aboutsummaryrefslogtreecommitdiff
path: root/api/dead/src/BaseConfigObject.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2016-09-18 22:53:37 +0200
committerPetr Mrázek <peterix@gmail.com>2016-09-18 22:53:37 +0200
commit69f3ab019d4ef9e28d0c7e3c4ce3a609a6ff0a91 (patch)
treea22a80b987212490371294f53e1f8bd698f1dad5 /api/dead/src/BaseConfigObject.h
parenteb747e08b78d8630413b9bdb3a96108ccfcc2ac8 (diff)
downloadPrismLauncher-69f3ab019d4ef9e28d0c7e3c4ce3a609a6ff0a91.tar.gz
PrismLauncher-69f3ab019d4ef9e28d0c7e3c4ce3a609a6ff0a91.tar.bz2
PrismLauncher-69f3ab019d4ef9e28d0c7e3c4ce3a609a6ff0a91.zip
NOISSUE delete dead code
Diffstat (limited to 'api/dead/src/BaseConfigObject.h')
-rw-r--r--api/dead/src/BaseConfigObject.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/api/dead/src/BaseConfigObject.h b/api/dead/src/BaseConfigObject.h
deleted file mode 100644
index 1c96b3d1..00000000
--- a/api/dead/src/BaseConfigObject.h
+++ /dev/null
@@ -1,50 +0,0 @@
-/* Copyright 2015 MultiMC Contributors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#pragma once
-
-#include <QObject>
-
-class QTimer;
-
-class BaseConfigObject
-{
-public:
- void setSaveTimeout(int msec);
-
-protected:
- explicit BaseConfigObject(const QString &filename);
- virtual ~BaseConfigObject();
-
- // cppcheck-suppress pureVirtualCall
- virtual QByteArray doSave() const = 0;
- virtual void doLoad(const QByteArray &data) = 0;
-
- void setSavingDisabled(bool savingDisabled) { m_disableSaving = savingDisabled; }
-
- QString fileName() const { return m_filename; }
-
-public:
- void scheduleSave();
- void saveNow();
- void loadNow();
-
-private:
- QTimer *m_saveTimer;
- QTimer *m_initialReadTimer;
- QString m_filename;
- QMetaObject::Connection m_appQuitConnection;
- bool m_disableSaving = false;
-};