mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-29 03:04:34 +00:00
24 lines
411 B
C
24 lines
411 B
C
|
#ifndef PACKING_H
|
||
|
#define PACKING_H
|
||
|
|
||
|
/**
|
||
|
* @brief The Packing class - this class have interface for configure package and
|
||
|
* create package from deployment distibution.
|
||
|
*/
|
||
|
|
||
|
class ConfigParser;
|
||
|
class iDistribution;
|
||
|
|
||
|
class Packing
|
||
|
{
|
||
|
public:
|
||
|
Packing();
|
||
|
~Packing();
|
||
|
void setDistribution(iDistribution *pakage);
|
||
|
bool create();
|
||
|
private:
|
||
|
iDistribution *_pakage = nullptr;
|
||
|
};
|
||
|
|
||
|
#endif // PACKING_H
|