diff options
| author | 2014-01-07 19:03:52 +0100 | |
|---|---|---|
| committer | 2014-01-07 19:03:52 +0100 | |
| commit | 8b51367eda7ecdbe32e17bcfe2f7f4c93e878465 (patch) | |
| tree | d165667ea2e239978a3e94cf455bc3963f7a0ca4 | |
| parent | e62103b126ea5e324de73b6eef666e153bc3363c (diff) | |
| download | OneRoll-8b51367eda7ecdbe32e17bcfe2f7f4c93e878465.tar.gz OneRoll-8b51367eda7ecdbe32e17bcfe2f7f4c93e878465.zip | |
Update validator.h
Die API
| -rw-r--r-- | validator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/validator.h b/validator.h index 1bdb977..00b473e 100644 --- a/validator.h +++ b/validator.h @@ -2,12 +2,13 @@ #define VALIDATOR_H #include <Qt> +#include "die.h" class Validator { public: Validator(); - virtual bool isValid(qint64 b) const = 0 ; + virtual bool isValid(Die b) const = 0 ; }; #endif // VALIDATOR_H |