##// END OF EJS Templates
Adds methods min() and max() in ArrayData iterators...
Adds methods min() and max() in ArrayData iterators In a case of an 2-dim ArrayData, the search is made on all components.

File last commit:

r95:5eeffba24c85
r607:9a52fd42b9d8
Show More
SqpSidePane.h
27 lines | 408 B | text/x-c | CLexer
Creation and styling SidePaneWidget
r57 #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