summaryrefslogtreecommitdiff
path: root/plugins/SessionLoader/Windows/sessionLoader.h
diff options
context:
space:
mode:
authorThomas Preud'homme <robotux@celest.fr>2013-01-04 14:50:19 +0100
committerThomas Preud'homme <robotux@celest.fr>2013-01-04 14:50:19 +0100
commit8f9f382e1c97cab2e72e97495650c73ac4b97314 (patch)
tree78510a0d81368c09b56f444fb19bb132c8bc3009 /plugins/SessionLoader/Windows/sessionLoader.h
Imported Upstream version 0.3.0.5
Diffstat (limited to 'plugins/SessionLoader/Windows/sessionLoader.h')
-rwxr-xr-xplugins/SessionLoader/Windows/sessionLoader.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/SessionLoader/Windows/sessionLoader.h b/plugins/SessionLoader/Windows/sessionLoader.h
new file mode 100755
index 0000000..ca2e9fd
--- /dev/null
+++ b/plugins/SessionLoader/Windows/sessionLoader.h
@@ -0,0 +1,31 @@
+/** \file sessionLoader.h
+\brief Define the session loader
+\author alpha_one_x86
+\version 0.3
+\date 2010 */
+
+#ifndef SESSION_LOADER_H
+#define SESSION_LOADER_H
+
+#include <QObject>
+#include <QApplication>
+#include "Environment.h"
+#include "../../../interface/PluginInterface_SessionLoader.h"
+
+/// \brief Define the session loader
+class SessionLoader : public PluginInterface_SessionLoader
+{
+ Q_OBJECT
+ Q_INTERFACES(PluginInterface_SessionLoader)
+public:
+ void setEnabled(bool);
+ bool getEnabled();
+ void setResources(OptionInterface * options,QString writePath,QString pluginPath,bool portableVersion);
+signals:
+ #ifdef ULTRACOPIER_PLUGIN_DEBUG
+ /// \brief To debug source
+ void debugInformation(DebugLevel level,QString fonction,QString text,QString file,int ligne);
+ #endif
+};
+
+#endif // SESSION_LOADER_H