* Has the class a virtual method of the given name? */
| 88 | * Has the class a virtual method of the given name? |
| 89 | */ |
| 90 | bool Class::hasVirtualMethod(const std::string& name) const |
| 91 | { |
| 92 | return hasItem(virtualMethods, name); |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * Does a function with the given name belong to the class? |