8 #ifndef CSTLCOMPILEROBJECT_H 9 #define CSTLCOMPILEROBJECT_H 12 #include "cppwebframework_global.h" 35 inline QString
getValue() const noexcept {
return value; }
40 inline void setValue(
const QString &value) noexcept { this->value = value; }
45 inline QString
getType() const noexcept {
return type; }
50 inline void setType(
const QString &value) noexcept { type = value; }
55 #endif // CSTLCOMPILEROBJECT_H void setType(const QString &value) noexcept
Sets the type.
Definition: cstlcompilerobject.h:50
QString getType() const noexcept
Returns the type.
Definition: cstlcompilerobject.h:45
CSTLCompilerObject(QObject *parent=nullptr)
This constructor can set the CSTLCompilerObject's parent.
Definition: cstlcompilerobject.h:29
QString getValue() const noexcept
Returns the value.
Definition: cstlcompilerobject.h:35
The Properties class is an auxiliar class to the CSTLCompiler.
Definition: cstlcompilerobject.h:18
void setValue(const QString &value) noexcept
Sets the value.
Definition: cstlcompilerobject.h:40