| 22 | #include "node.h" |
| 23 | |
| 24 | class ComplementNode : public Node |
| 25 | { |
| 26 | public: |
| 27 | ComplementNode() = default; |
| 28 | void accept(NodeVisitor&) override; |
| 29 | }; |
| 30 | |
| 31 | #endif // COMPLEMENTNODE_H |
nothing calls this directly
no outgoing calls
no test coverage detected