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