mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-05-07 23:19:35 +00:00
20 lines
362 B
C
20 lines
362 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;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // PACKAGECONTROL_H
|