CQtDeployer/Deploy/packagecontrol.h

20 lines
362 B
C
Raw Normal View History

2020-08-15 14:38:03 +03:00
#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