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.
16 lines
365 B
C++
16 lines
365 B
C++
#ifndef SAMESTRINGVALIDATOR_H
|
|
#define SAMESTRINGVALIDATOR_H
|
|
#include "ivalidator.h"
|
|
#include "core_global.h"
|
|
|
|
class CORESHARED_EXPORT SameStringValidator : public IValidator
|
|
{
|
|
public:
|
|
SameStringValidator(QWidget * widget_1, QWidget *widget_2, const QString &errorMessage);
|
|
bool validate();
|
|
private:
|
|
QWidget * m_widget_2;
|
|
};
|
|
|
|
#endif // SAMESTRINGVALIDATOR_H
|