blob: ed117c65ad8fe11cb3d7703bf5153af9e62b2985 (
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
|