* Define a default print header for all objects. */
| 180 | * Define a default print header for all objects. |
| 181 | */ |
| 182 | QDebug Object::PrintHeader(QDebug os, Indent Indent) const |
| 183 | { |
| 184 | os << Indent << this->GetClassName() << " (" << this << ")\n"; |
| 185 | return os; |
| 186 | } |
| 187 | |
| 188 | /** |
| 189 | * Define a default print trailer for all objects. |
no test coverage detected