diff options
| author | Martial Simon <msimon_fr@hotmail.com> | 2025-09-15 01:08:27 +0200 |
|---|---|---|
| committer | Martial Simon <msimon_fr@hotmail.com> | 2025-09-15 01:08:27 +0200 |
| commit | c9b6b9a5ca082fe7c1b6f58d7713f785a9eb6a5c (patch) | |
| tree | 3e4f42f93c7ae89a364e4d51fff6e5cec4e55fa9 /graphs/cpp/visitor/print_visitor.hh | |
add: graphs et rushs
Diffstat (limited to 'graphs/cpp/visitor/print_visitor.hh')
| -rw-r--r-- | graphs/cpp/visitor/print_visitor.hh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/graphs/cpp/visitor/print_visitor.hh b/graphs/cpp/visitor/print_visitor.hh new file mode 100644 index 0000000..aa0ea4c --- /dev/null +++ b/graphs/cpp/visitor/print_visitor.hh @@ -0,0 +1,25 @@ +// +// Created by martial.simon on 2/27/25. +// + +#pragma once + +#include "visitor.hh" + +namespace visitor +{ + class PrintVisitor : public Visitor + { + public: + void visit(const tree::Tree& e); + void visit(const tree::Node& e); + void visit(const tree::AddNode& e); + void visit(const tree::SubNode& e); + void visit(const tree::MulNode& e); + void visit(const tree::DivNode& e); + void visit(const tree::Leaf& e); + + private: + int value_ = 0; + }; +} // namespace visitor |
