##// END OF EJS Templates
Handles right clicking on the tree of the data sources...
Handles right clicking on the tree of the data sources The action generates the menu associated to the selected item and shows it

File last commit:

r112:60eef9a674fc
r143:7b4ea0e1482b
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