You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
373 B
C++
20 lines
373 B
C++
#ifndef EMPTYSTRINGVALIDATOR_H
|
|
#define EMPTYSTRINGVALIDATOR_H
|
|
|
|
#include <QString>
|
|
#include "ivalidator.h"
|
|
|
|
#include "core_global.h"
|
|
|
|
class CORESHARED_EXPORT EmptyStringValidator : public IValidator
|
|
{
|
|
public:
|
|
EmptyStringValidator(QWidget *widget, const QString &errMessage);
|
|
|
|
// IValidator interface
|
|
public:
|
|
bool validate();
|
|
};
|
|
|
|
#endif // EMPTYSTRINGVALIDATOR_H
|