blob: 887828a85bdcb0b6331f128de92ae61680c5d98b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Copyright (c) 2012 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <QValidator>
namespace Swift {
class QtURLValidator : public QValidator {
Q_OBJECT
public:
QtURLValidator(QObject* parent);
virtual QValidator::State validate(QString& input, int& pos) const;
};
}
|