| 82 | { |
| 83 | public: |
| 84 | TreeNode() : Name(), Hidden(false), Parent(nullptr) { } |
| 85 | TreeNode(const tString& name, bool hidden, FileDialog* dialog, TreeNode* parent) : Name(name), Hidden(hidden), Dialog(dialog), Parent(parent) { } |
| 86 | virtual ~TreeNode() { Contents.Empty(); Children.Empty(); } |
| 87 |
nothing calls this directly
no outgoing calls
no test coverage detected