This commit is contained in:
2026-06-14 15:54:35 +08:00
commit 3caeb07e54
2804 changed files with 373231 additions and 0 deletions
@@ -0,0 +1,18 @@
#ifndef T_TREEVIEW_H
#define T_TREEVIEW_H
#include "T_BasePage.h"
class ElaTreeView;
class T_TreeView : public T_BasePage
{
Q_OBJECT
public:
Q_INVOKABLE explicit T_TreeView(QWidget* parent = nullptr);
~T_TreeView();
private:
ElaTreeView* _treeView{nullptr};
};
#endif // T_TREEVIEW_H