You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
509 B
27 lines
509 B
#ifndef UNIBOARDSANKORETRANSITION_H
|
|
#define UNIBOARDSANKORETRANSITION_H
|
|
|
|
#include <QObject>
|
|
#include <QFileInfo>
|
|
|
|
class UniboardSankoreTransition : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit UniboardSankoreTransition(QObject *parent = 0);
|
|
bool backupUniboardDirectory();
|
|
void documentTransition();
|
|
|
|
private:
|
|
void rollbackDocumentsTransition(QFileInfoList& fileInfoList);
|
|
|
|
protected:
|
|
QString mUniboardSourceDirectory;
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
#endif // UNIBOARDSANKORETRANSITION_H
|
|
|