summaryrefslogtreecommitdiffstats
path: root/src/plugins/pluginloader.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/pluginloader.h
parent611680a72e0f04e080c3b7ed59bd23d5b8b709f1 (diff)
downloadcolobot-f1d1cdceee3ec49546ba800a1b53a2dfb9c21e11.tar.gz
colobot-f1d1cdceee3ec49546ba800a1b53a2dfb9c21e11.tar.bz2
colobot-f1d1cdceee3ec49546ba800a1b53a2dfb9c21e11.zip
Changes after merge
Diffstat (limited to 'src/plugins/pluginloader.h')
-rw-r--r--src/plugins/pluginloader.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/plugins/pluginloader.h b/src/plugins/pluginloader.h
new file mode 100644
index 0000000..d9ee041
--- /dev/null
+++ b/src/plugins/pluginloader.h
@@ -0,0 +1,46 @@
+// * 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/.
+
+// pluginloader.h
+
+
+#pragma once
+
+#include <ltdl.h>
+#include <string>
+
+#include <common/logger.h>
+
+#include "plugininterface.h"
+
+
+class CPluginLoader {
+ public:
+ CPluginLoader(std::string filename);
+
+ char* GetName();
+ int GetVersion();
+ bool UnloadPlugin();
+ bool LoadPlugin();
+ bool IsLoaded();
+
+
+ private:
+ CPluginInterface* mInterface;
+ std::string mFilename;
+ lt_dlhandle mHandle;
+ bool mLoaded;
+};