| 60 | void Function::setRealName(const std::string& n) { _realName = n; } |
| 61 | void Function::setDemangledName(const std::string& n) { _demangledName = n; } |
| 62 | void Function::setComment(const std::string& c) { _comment = c; } |
| 63 | void Function::addComment(const std::string& c) { _comment += c; } |
| 64 | void Function::setDeclarationString(const std::string& s) { _declarationString = s; } |
| 65 | void Function::setSourceFileName(const std::string& n) { _sourceFileName = n; } |