mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-30 03:34:34 +00:00
27 lines
453 B
C++
27 lines
453 B
C++
|
#include "envirement.h"
|
||
|
|
||
|
QStringList Envirement::deployEnvironment() const
|
||
|
{
|
||
|
return _deployEnvironment;
|
||
|
}
|
||
|
|
||
|
void Envirement::setDeployEnvironment(const QStringList &deployEnvironment)
|
||
|
{
|
||
|
_deployEnvironment = deployEnvironment;
|
||
|
}
|
||
|
|
||
|
QStringList Envirement::ignoreEnvList() const
|
||
|
{
|
||
|
return _ignoreEnvList;
|
||
|
}
|
||
|
|
||
|
void Envirement::setIgnoreEnvList(const QStringList &ignoreEnvList)
|
||
|
{
|
||
|
_ignoreEnvList = ignoreEnvList;
|
||
|
}
|
||
|
|
||
|
Envirement::Envirement()
|
||
|
{
|
||
|
|
||
|
}
|