summaryrefslogtreecommitdiffstats
path: root/src/Common/Configurable.cpp
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2008-10-27 22:41:06 +0100
committerMatthias Schiffer <matthias@gamezock.de>2008-10-27 22:41:06 +0100
commit2b83ae7c71dc706fb4fd7b4efc4a8ffee8dfe522 (patch)
tree4f63c64041fd93255105493fd444a65ad0761b9b /src/Common/Configurable.cpp
parentb58831e5eec4d0595099b8e9c2979b157fe37041 (diff)
downloadmad-2b83ae7c71dc706fb4fd7b4efc4a8ffee8dfe522.tar
mad-2b83ae7c71dc706fb4fd7b4efc4a8ffee8dfe522.zip
Neues Initialisierung-Framework hinzugef?gt
Diffstat (limited to 'src/Common/Configurable.cpp')
-rw-r--r--src/Common/Configurable.cpp35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/Common/Configurable.cpp b/src/Common/Configurable.cpp
deleted file mode 100644
index 4d689ed..0000000
--- a/src/Common/Configurable.cpp
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Configurable.cpp
- *
- * Copyright (C) 2008 Matthias Schiffer <matthias@gamezock.de>
- *
- * This program is free software: you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- * See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include "Configurable.h"
-#include "ConfigManager.h"
-
-namespace Mad {
-namespace Common {
-
-Configurable::Configurable() {
- ConfigManager::getConfigManager()->registerConfigurable(this);
-}
-
-Configurable::~Configurable() {
- ConfigManager::getConfigManager()->unregisterConfigurable(this);
-}
-
-}
-}