summaryrefslogtreecommitdiff
path: root/plugins/SessionLoader/Windows/sessionLoader.h
blob: ca2e9fdc5030c4da7feca4fbf51d8768875566d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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