| 7 | #include "JsonNode.h" |
| 8 | |
| 9 | class TreeHandler |
| 10 | { |
| 11 | public: |
| 12 | virtual ~TreeHandler() = default; |
| 13 | |
| 14 | virtual HTREEITEM InsertToTree(HTREEITEM parent, const std::string& text) = 0; |
| 15 | virtual HTREEITEM InsertToTree(HTREEITEM parent, const std::string& text, const Position& pos) = 0; |
| 16 | virtual void AppendNodeCount(HTREEITEM node, unsigned elementCount, bool bArray) = 0; |
| 17 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected