diff options
| author | 2015-08-20 12:25:21 +0200 | |
|---|---|---|
| committer | 2015-08-20 12:25:21 +0200 | |
| commit | 831f75a83ca3e5734d3c110af584a0f3bf7430e7 (patch) | |
| tree | 6417d0f3855782cd1875b701d3a117c277d7c4d4 /result/result.h | |
| parent | 1dc11051931fd074b886a4e1fe0df5d747e87e20 (diff) | |
| download | OneRoll-831f75a83ca3e5734d3c110af584a0f3bf7430e7.tar.gz OneRoll-831f75a83ca3e5734d3c110af584a0f3bf7430e7.zip | |
add bool for toString() in result.
Diffstat (limited to 'result/result.h')
| -rw-r--r-- | result/result.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/result/result.h b/result/result.h index 3d635bc..7fd32da 100644 --- a/result/result.h +++ b/result/result.h @@ -77,11 +77,12 @@ public: * @brief toString * @return */ - virtual QString toString() = 0; + virtual QString toString(bool wl) = 0; protected: int m_resultTypes;/// @brief private: Result* m_previous;/// @brief + QString m_id; }; |