diff options
Diffstat (limited to 'result.cpp')
| -rw-r--r-- | result.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -45,3 +45,12 @@ bool Result::hasResultOfType(RESULT_TYPE type) const { return (m_resultTypes & type); } +void Result::generateDotTree(QString& s) +{ + s.append(toString()); + +} +QString Result::toString() +{ + QString(); +} |