FactDev  0.1
icheckfield.h
1 #ifndef ICHECKFIELD_H
2 #define ICHECKFIELD_H
3 
4 #include <QString>
5 
6 namespace Gui {
7 namespace Widgets {
8 namespace CheckFields {
12 class ICheckField {
13 
14 public:
20  virtual bool check(QString text) = 0;
21 
22 };
23 }
24 }
25 }
26 #endif // ICHECKFIELD_H
The ICheckField class Interface to check fields validity.
Definition: icheckfield.h:12
virtual bool check(QString text)=0
ICheckField::check Check if the field (line edit) is valid Return TRUE if the field is valid...