diff options
| author | 2014-12-09 20:41:33 +0100 | |
|---|---|---|
| committer | 2014-12-09 20:41:33 +0100 | |
| commit | bbab96c9148cb2b96bb14fe5b7a7beac1de22b66 (patch) | |
| tree | cffbbddd1ea1f8581e296ee85e2217a257eecfb6 /result.cpp | |
| parent | de38199f61635a4206eb44c8e70634086aa20538 (diff) | |
| download | OneRoll-bbab96c9148cb2b96bb14fe5b7a7beac1de22b66.tar.gz OneRoll-bbab96c9148cb2b96bb14fe5b7a7beac1de22b66.zip | |
-Add stringresult API
Diffstat (limited to 'result.cpp')
| -rw-r--r-- | result.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -36,3 +36,12 @@ void Result::setPrevious(Result* p) m_previous = p; } +bool Result::isStringResult() +{ + return false; +} + +QString Result::getStringResult() +{ + return QString(); +} |