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