#ifndef ISERVICE_H #define ISERVICE_H #include #include #include "core_global.h" class CORESHARED_EXPORT IService : public QObject { Q_OBJECT public: explicit IService(QObject *parent = 0); virtual ~IService(); signals: void dbError(QString errMsg); void dataChanged(); void permissionDenied(); public slots: }; #endif // ISERVICE_H