in reply to Inheritance and module cross dependencies
Since the rest of the code just assumed Teacher, it should continue to work with a Lecturer (which ISA Teacher). When you do need ->get_research_projects() you can use can to check if it is safe to call it.
Avoid saying Lecturer explicitly in your code, to what degree this is possible.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Inheritance and module cross dependencies
by prowler (Friar) on Jan 10, 2005 at 07:29 UTC | |
by gaal (Parson) on Jan 10, 2005 at 07:42 UTC |