ccacic.cpp
958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include "ccacic.h"
CCacic::CCacic(QObject *parent) :
QObject(parent)
{
}
/*Getters/Setters
* Begin:
*/
QString CCacic::getCacicMainFolder() const
{
return cacicMainFolder;
}
void CCacic::setCacicMainFolder(const QString &value)
{
cacicMainFolder = value;
}
QString CCacic::getMainModuleName() const
{
return mainModuleName;
}
void CCacic::setMainModuleName(const QString &value)
{
mainModuleName = value;
}
QString CCacic::getUrlGerente() const
{
return urlGerente;
}
void CCacic::setUrlGerente(const QString &value)
{
urlGerente = value;
}
QString CCacic::getGerColsInfFilePath() const
{
return gerColsInfFilePath;
}
void CCacic::setGerColsInfFilePath(const QString &value)
{
gerColsInfFilePath = value;
}
QString CCacic::getChksisInfFilePath() const
{
return chksisInfFilePath;
}
void CCacic::setChksisInfFilePath(const QString &value)
{
chksisInfFilePath = value;
}
/*Getters/Setters
* End.
*/