summaryrefslogblamecommitdiffstats
path: root/src/vmtree.h
blob: f6b2912b4b536a8cb140fbf244b7afd3f892cf32 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                 
                                                             





                      
#ifndef VMTREE_H

#include <QObject>
#include <QTreeView>

#define VMTREE_H

class VmTree : public QTreeView {
    Q_OBJECT

  public:
    VmTree(QWidget* parent = nullptr) : QTreeView(parent) {};

    void cursorDown();
    void cursorUp();
};

#endif