forked from qt-creator/qt-creator
20 lines
369 B
C
20 lines
369 B
C
|
|
#ifndef QMLJSOUTLINETREEVIEW_H
|
||
|
|
#define QMLJSOUTLINETREEVIEW_H
|
||
|
|
|
||
|
|
#include <utils/navigationtreeview.h>
|
||
|
|
|
||
|
|
namespace QmlJSEditor {
|
||
|
|
namespace Internal {
|
||
|
|
|
||
|
|
class QmlJSOutlineTreeView : public Utils::NavigationTreeView
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
QmlJSOutlineTreeView(QWidget *parent = 0);
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace Internal
|
||
|
|
} // namespace QmlJSEditor
|
||
|
|
|
||
|
|
#endif // QMLJSOUTLINETREEVIEW_H
|