mirror of
https://github.com/QuasarApp/QtDeployer.git
synced 2025-05-04 17:19:34 +00:00
27 lines
370 B
C++
Executable File
27 lines
370 B
C++
Executable File
#ifndef SNAPMANAGER_H
|
|
#define SNAPMANAGER_H
|
|
|
|
#include "baseclass.h"
|
|
|
|
class SnapManager : public BaseClass
|
|
{
|
|
Q_OBJECT
|
|
|
|
bool checkSnapDirs()const;
|
|
|
|
bool copySnap()const;
|
|
|
|
public:
|
|
explicit SnapManager(QObject *parent = nullptr);
|
|
|
|
public slots:
|
|
void start();
|
|
|
|
|
|
signals:
|
|
void done(QString snap);
|
|
void fail(QString error);
|
|
};
|
|
|
|
#endif // CPPMANAGER_H
|