Fixed MSVS 2012 build

This commit is contained in:
2017-05-31 22:14:31 +02:00
parent 27ec7282eb
commit b916d626d1
13 changed files with 54 additions and 11 deletions
+3 -1
View File
@@ -1,7 +1,9 @@
#ifndef IIMPORTPROGRESS_H
#define IIMPORTPROGRESS_H
class IImportProgress
#include "core_global.h"
class CORESHARED_EXPORT IImportProgress
{
public:
virtual void updateProgress(int currentPos) = 0;
+3 -1
View File
@@ -5,11 +5,13 @@
#include <QMetaObject>
#include "iservice.h"
#include "core_global.h"
namespace Ui {
class ImportDialog;
}
class ImportDialog : public QDialog
class CORESHARED_EXPORT ImportDialog : public QDialog
{
Q_OBJECT
+3 -1
View File
@@ -4,11 +4,13 @@
#include <QWidget>
#include "iimportprogress.h"
#include "core_global.h"
namespace Ui {
class ImportProgress;
}
class ImportProgress : public QWidget, public IImportProgress
class CORESHARED_EXPORT ImportProgress : public QWidget, public IImportProgress
{
Q_OBJECT