This repository has been archived on 2023-08-11. You can view files and clone it, but cannot push or open issues or pull requests.
verticallite/treenode.h

12 lines
180 B
C

#ifndef TREENODE_H
#define TREENODE_H
struct TreeNode
{
long id;
long parent;
QList<long> children;
QList<QVariant> data;
bool isFetch;
};
#endif // TREENODE_H