mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 13:59:52 +08:00
20 lines
256 B
C++
20 lines
256 B
C++
#ifndef VDIRECTORYTREE_H
|
|
#define VDIRECTORYTREE_H
|
|
|
|
#include <QTreeWidget>
|
|
|
|
class VDirectoryTree : public QTreeWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit VDirectoryTree(QWidget *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
private:
|
|
};
|
|
|
|
#endif // VDIRECTORYTREE_H
|