mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-28 02:34:34 +00:00
32 lines
814 B
C++
32 lines
814 B
C++
#ifndef EXTRA_H
|
|
#define EXTRA_H
|
|
#include "deploy_global.h"
|
|
|
|
#include <QSet>
|
|
|
|
|
|
class DEPLOYSHARED_EXPORT Extra {
|
|
QSet<QString> extraPaths;
|
|
QSet<QString> extraPathsMasks;
|
|
QSet<QString> extraNamesMasks;
|
|
|
|
QSet<QString> upper(const QSet<QString> & ) const;
|
|
|
|
public:
|
|
QSet<QString> getExtraPaths() const;
|
|
void setExtraPaths(const QSet<QString> &value);
|
|
void addExtraPaths(const QSet<QString> &value);
|
|
|
|
QSet<QString> getExtraPathsMasks() const;
|
|
void setExtraPathsMasks(const QSet<QString> &value);
|
|
void addExtraPathsMasks(const QSet<QString> &value);
|
|
|
|
QSet<QString> getExtraNamesMasks() const;
|
|
void setExtraNamesMasks(const QSet<QString> &value);
|
|
void addtExtraNamesMasks(const QSet<QString> &value);
|
|
|
|
bool contains(const QString &path) const;
|
|
|
|
};
|
|
#endif // EXTRA_H
|