summaryrefslogtreecommitdiffstats
path: root/src/plugins/plugin.h
diff options
context:
space:
mode:
authorerihel <erihel@gmail.com>2012-08-09 21:21:14 +0200
committererihel <erihel@gmail.com>2012-08-09 21:21:14 +0200
commitf1d1cdceee3ec49546ba800a1b53a2dfb9c21e11 (patch)
treeedaf51343085410a66f773b4d189b6eaffa091dd /src/plugins/plugin.h
parent611680a72e0f04e080c3b7ed59bd23d5b8b709f1 (diff)
downloadcolobot-f1d1cdceee3ec49546ba800a1b53a2dfb9c21e11.tar.gz
colobot-f1d1cdceee3ec49546ba800a1b53a2dfb9c21e11.tar.bz2
colobot-f1d1cdceee3ec49546ba800a1b53a2dfb9c21e11.zip
Changes after merge
Diffstat (limited to 'src/plugins/plugin.h')
-rw-r--r--src/plugins/plugin.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/plugins/plugin.h b/src/plugins/plugin.h
deleted file mode 100644
index e7d4b12..0000000
--- a/src/plugins/plugin.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// * This file is part of the COLOBOT source code
-// * Copyright (C) 2012, Polish Portal of Colobot (PPC)
-// *
-// * 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/.
-
-// plugin.h
-
-
-#pragma once
-
-#include <ltdl.h>
-#include <string>
-
-#include <common/logger.h>
-
-#include "plugininterface.h"
-
-
-class CPlugin {
- public:
- CPlugin(std::string filename);
-
- char* GetName();
- int GetVersion();
- bool UnloadPlugin();
- bool LoadPlugin();
- bool IsLoaded();
-
-
- private:
- CPluginInterface* mInterface;
- std::string mFilename;
- lt_dlhandle mHandle;
- bool mLoaded;
-};