Skip to content

Commit

Permalink
Add definitions for Add/Remove in ExpressionNode.
Browse files Browse the repository at this point in the history
  • Loading branch information
BartVandewoestyne committed Feb 13, 2024
1 parent 3abfdf8 commit d9f3bf4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Structural_Patterns/Facade/ExpressionNode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,11 @@ void ExpressionNode::Traverse (CodeGenerator& cg) {
i.CurrentItem()->Traverse(cg);
}
}

void ExpressionNode::Add(ProgramNode*) {
// TODO
}

void ExpressionNode::Remove(ProgramNode*) {
// TODO
}

0 comments on commit d9f3bf4

Please sign in to comment.