summaryrefslogtreecommitdiff
path: root/interface/PluginInterface_PluginLoader.h
diff options
context:
space:
mode:
Diffstat (limited to 'interface/PluginInterface_PluginLoader.h')
-rw-r--r--interface/PluginInterface_PluginLoader.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/interface/PluginInterface_PluginLoader.h b/interface/PluginInterface_PluginLoader.h
index 71d5935..c702003 100644
--- a/interface/PluginInterface_PluginLoader.h
+++ b/interface/PluginInterface_PluginLoader.h
@@ -6,7 +6,7 @@
#ifndef PLUGININTERFACE_PLUGINLOADER_H
#define PLUGININTERFACE_PLUGINLOADER_H
-#include <QString>
+#include <string>
#include "OptionInterface.h"
@@ -21,7 +21,7 @@ class PluginInterface_PluginLoader : public QObject
/// \brief try enable/disable the catching
virtual void setEnabled(const bool &enabled) = 0;
/// \brief to set resources, writePath can be empty if read only mode
- virtual void setResources(OptionInterface * options,const QString &writePath,const QString &pluginPath,const bool &portableVersion) = 0;
+ virtual void setResources(OptionInterface * options,const std::string &writePath,const std::string &pluginPath,const bool &portableVersion) = 0;
/// \brief to get the options widget, NULL if not have
virtual QWidget * options() = 0;
public slots:
@@ -31,9 +31,9 @@ class PluginInterface_PluginLoader : public QObject
signals:
void newState(const Ultracopier::CatchState &catchstate) const;
/// \brief To debug source
- void debugInformation(const Ultracopier::DebugLevel &level,const QString &fonction,const QString &text,const QString &file,const int &ligne) const;
+ void debugInformation(const Ultracopier::DebugLevel &level,const std::string &fonction,const std::string &text,const std::string &file,const int &ligne) const;
};
-Q_DECLARE_INTERFACE(PluginInterface_PluginLoader,"first-world.info.ultracopier.PluginInterface.PluginLoader/1.0.0.0");
+Q_DECLARE_INTERFACE(PluginInterface_PluginLoader,"first-world.info.ultracopier.PluginInterface.PluginLoader/1.2.4.0");
#endif // PLUGININTERFACE_PLUGINLOADER_H