##// END OF EJS Templates
Adapts sort() method to 2-dim array data (2)...
Adapts sort() method to 2-dim array data (2) Makes sort method for 2-dim array data, and specializes the method for 1-dim array data with the existing function

File last commit:

r95:5eeffba24c85
r505:c4a0c9f4308e
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