##// END OF EJS Templates
Adds method to get all variables from model...
Adds method to get all variables from model This method will be used to generate forbidden names when renaming a variable (i.e. names of existing variables)

File last commit:

r93:5eeffba24c85
r636:c7028b4894dd
Show More
SqpSidePane.h
27 lines | 408 B | text/x-c | CLexer
#ifndef SCIQLOP_SQPSIDEPANE_H
#define SCIQLOP_SQPSIDEPANE_H
#include <QWidget>
namespace Ui {
class SqpSidePane;
} // Ui
class QToolBar;
class SqpSidePane : public QWidget {
Q_OBJECT
public:
explicit SqpSidePane(QWidget *parent = 0);
virtual ~SqpSidePane();
QToolBar *sidePane();
private:
Ui::SqpSidePane *ui;
QToolBar *m_SidePaneToolbar;
};
#endif // SCIQLOP_ SQPSIDEPANE_H