17 lines
238 B
C++
17 lines
238 B
C++
#ifndef OTREEVIEW_H
|
|
#define OTREEVIEW_H
|
|
|
|
#include <QTreeView>
|
|
|
|
#include "ui/sourcetable.h"
|
|
|
|
class OTreeView : public QTreeView {
|
|
Q_OBJECT
|
|
public:
|
|
OTreeView(QWidget* parent = 0);
|
|
private:
|
|
|
|
};
|
|
|
|
#endif // OTREEVIEW_H
|