| 229 | } |
| 230 | |
| 231 | bool struct_identity::is_subclass(const struct_identity *actual) const |
| 232 | { |
| 233 | if (!hasChildren() && actual != this) |
| 234 | return false; |
| 235 | |
| 236 | for (; actual; actual = actual->getParent()) |
| 237 | if (actual == this) return true; |
| 238 | |
| 239 | return false; |
| 240 | } |
| 241 | |
| 242 | const std::string pointer_identity::getFullName() const |
| 243 | { |
no test coverage detected