##// END OF EJS Templates
Defines actions for a data source items...
Defines actions for a data source items DataSourceItemAction is an object that will be connected to a QAction. When the QAction will be triggered, the DataSourceItemAction will be executed

File last commit:

r112:60eef9a674fc
r144:7a9a79ed3b02
Show More
Variable.h
20 lines | 423 B | text/x-c | CLexer
#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