##// END OF EJS Templates
Merge pull request 146 from SCIQLOP-Initialisation develop...
Merge pull request 146 from SCIQLOP-Initialisation develop Develop

File last commit:

r112:60eef9a674fc
r117:27ad8f53ca07 merge
Show More
Variable.h
20 lines | 423 B | text/x-c | CLexer
Alexandre Leroux
Creates the variable model...
r112 #ifndef SCIQLOP_VARIABLE_H
#define SCIQLOP_VARIABLE_H
#include <QString>
/**
* @brief The Variable struct represents a variable in SciQlop.
*/
struct Variable {
explicit Variable(const QString &name, const QString &unit, const QString &mission)
: m_Name{name}, m_Unit{unit}, m_Mission{mission}
{
}
QString m_Name;
QString m_Unit;
QString m_Mission;
};
#endif // SCIQLOP_VARIABLE_H