Added support for form validations.
parent
6bc7fd8762
commit
5993193ffb
@ -0,0 +1,7 @@
|
||||
#include "emptystringvalidator.h"
|
||||
|
||||
EmptyStringValidator::EmptyStringValidator()
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,11 @@
|
||||
#ifndef EMPTYSTRINGVALIDATOR_H
|
||||
#define EMPTYSTRINGVALIDATOR_H
|
||||
|
||||
|
||||
class EmptyStringValidator : public IValidator
|
||||
{
|
||||
public:
|
||||
EmptyStringValidator();
|
||||
};
|
||||
|
||||
#endif // EMPTYSTRINGVALIDATOR_H
|
@ -0,0 +1,5 @@
|
||||
#ifndef IVALIDATOR_H
|
||||
#define IVALIDATOR_H
|
||||
|
||||
#endif // IVALIDATOR_H
|
||||
|
Loading…
Reference in New Issue