installcacic.h 265 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 #ifndef INSTALLCACIC_H #define INSTALLCACIC_H #include <QObject> class InstallCacic : public QObject { Q_OBJECT public: explicit InstallCacic(QObject *parent = 0); signals: void finished(); public slots: void run(); }; #endif // INSTALLCACIC_H