mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-05-11 08:59:36 +00:00
22 lines
477 B
C++
22 lines
477 B
C++
#ifndef PACKAGECONTROL_H
|
|
#define PACKAGECONTROL_H
|
|
|
|
#include <QString>
|
|
|
|
|
|
/**
|
|
* @brief The PackageControl class - this is interface for move files for package
|
|
*/
|
|
class PackageControl
|
|
{
|
|
public:
|
|
PackageControl();
|
|
virtual bool movePackage(const QString& package,
|
|
const QString& newLocation) = 0;
|
|
virtual bool copyPackage(const QString& package,
|
|
const QString& newLocation) = 0;
|
|
|
|
};
|
|
|
|
#endif // PACKAGECONTROL_H
|