diff options
| author | 2014-01-07 18:57:24 +0100 | |
|---|---|---|
| committer | 2014-01-07 18:57:24 +0100 | |
| commit | e589d00842a2b64721b94f89a48f54aa3478dd40 (patch) | |
| tree | d222c53d2a10ae8ba5b72b76046c0c57e49b57ab | |
| parent | a202319041b2204f20c0986d33e1334ee74cb817 (diff) | |
| download | OneRoll-e589d00842a2b64721b94f89a48f54aa3478dd40.tar.gz OneRoll-e589d00842a2b64721b94f89a48f54aa3478dd40.zip | |
Update sortresult.h
add diceResult
| -rw-r--r-- | node/sortresult.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/node/sortresult.h b/node/sortresult.h index 8433eba..a317959 100644 --- a/node/sortresult.h +++ b/node/sortresult.h @@ -2,6 +2,7 @@ #define SORTRESULT_H #include "executionnode.h" +#include "diceresult.h" class SortResultNode : public ExecutionNode { @@ -13,6 +14,7 @@ public: void setSortAscending(bool asc); private: bool m_ascending; + DiceResult* m_diceResult; }; #endif // SORTRESULT_H |