ccacic.h
893 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
#ifndef CCACIC_H
#define CCACIC_H
#include <QObject>
class CCacic : public QObject
{
Q_OBJECT
public:
explicit CCacic(QObject *parent = 0);
QString getValueFromFile();
QString getValueFromTags();
//Geters/seters:
QString getCacicMainFolder() const;
void setCacicMainFolder(const QString &value);
QString getMainModuleName() const;
void setMainModuleName(const QString &value);
QString getUrlGerente() const;
void setUrlGerente(const QString &value);
QString getGerColsInfFilePath() const;
void setGerColsInfFilePath(const QString &value);
QString getChksisInfFilePath() const;
void setChksisInfFilePath(const QString &value);
private:
QString cacicMainFolder;
QString mainModuleName;
QString urlGerente;
QString gerColsInfFilePath;
QString chksisInfFilePath;
signals:
public slots:
};
#endif // CCACIC_H