##// END OF EJS Templates
Adds actions for items in the DataSourceWidget...
Adds actions for items in the DataSourceWidget For each item will be associated actions (generated from the model of the item) that will be displayed in the menu when right clicking on the item in the tree

File last commit:

r112:60eef9a674fc
r142:11579fae1cc2
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