blob: b374ef4098abb9b73fcfc623640f619ff6048de7 (
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;
	};
}
 |