mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-29 03:04:34 +00:00
18 lines
320 B
C++
18 lines
320 B
C++
#ifndef IDISTRIBUTION_H
|
|
#define IDISTRIBUTION_H
|
|
|
|
#include "distrostruct.h"
|
|
#include "envirement.h"
|
|
|
|
class DEPLOYSHARED_EXPORT iDistribution
|
|
{
|
|
public:
|
|
iDistribution();
|
|
virtual ~iDistribution();
|
|
|
|
virtual DistroStruct getStruct() = 0;
|
|
virtual Envirement toolKitLocation() = 0;
|
|
};
|
|
|
|
#endif // IDISTRIBUTION_H
|