blob: a65b181abd00144c21b2341b6a083dcc2d04674c (
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 qint64 hasValid(Die* b,bool recursive) const = 0 ;
};
#endif // VALIDATOR_H
|