#include <guard.h>
Inheritance diagram for Guard:
Public Member Functions | |
Guard (SrcPosition *position) | |
virtual | ~Guard () |
virtual Ast & | operator= (const Ast &ast) |
virtual bool | operator== (const Ast &ast) const |
|
Definition at line 10 of file guard.h. References Ast::position.
00011 : Ast(position) {} |
|
Definition at line 13 of file guard.h.
00013 { 00014 } |
|
Reimplemented from Ast. Reimplemented in GuardExpression, GuardReceive, and GuardTimeout. Definition at line 16 of file guard.h. References Ast::operator=(). Referenced by GuardTimeout::operator=(), GuardReceive::operator=(), and GuardExpression::operator=().
00016 { 00017 return Ast::operator=(ast); 00018 } |
|
Reimplemented from Ast. Reimplemented in GuardExpression, GuardReceive, and GuardTimeout. Definition at line 19 of file guard.h. References Ast::operator==(). Referenced by GuardTimeout::operator==(), GuardReceive::operator==(), and GuardExpression::operator==().
00019 { 00020 return Ast::operator==(ast); 00021 } |