blob: 00b473e9d4e00c621b76265fff873b5f70996411 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef VALIDATOR_H
#define VALIDATOR_H
#include <Qt>
#include "die.h"
class Validator
{
public:
Validator();
virtual bool isValid(Die b) const = 0 ;
};
#endif // VALIDATOR_H
|