3.0
Last change
on this file since 71:415b45c71663 was
71:415b45c71663,
checked in by Sämy Zehnder <saemy.zehnder@…>, 12 years ago
|
- Reorganized all the libraries. libinterfaces and libgateways are removed now and libdatatypes contains now all these files.
|
File size:
598 bytes
|
Line | |
---|
1 | /* |
---|
2 | * BCLoginAccountValidator.h |
---|
3 | * |
---|
4 | * Created on: Dec 20, 2009 |
---|
5 | * Author: saemy |
---|
6 | */ |
---|
7 | |
---|
8 | #ifndef SLOGINACCOUNTVALIDATOR_H_ |
---|
9 | #define SLOGINACCOUNTVALIDATOR_H_ |
---|
10 | |
---|
11 | #include "sstdaccountvalidator.h" |
---|
12 | |
---|
13 | #include <QObject> |
---|
14 | #include "../abstract/abstractloginaccount.h" |
---|
15 | |
---|
16 | class SLoginAccountValidator: public SStdAccountValidator { |
---|
17 | Q_OBJECT |
---|
18 | |
---|
19 | public: |
---|
20 | explicit SLoginAccountValidator(AbstractLoginAccount* account) |
---|
21 | : SStdAccountValidator(account) |
---|
22 | {}; |
---|
23 | |
---|
24 | IValidationResult* validate() const; |
---|
25 | |
---|
26 | protected: |
---|
27 | AbstractLoginAccount* account() const; |
---|
28 | }; |
---|
29 | |
---|
30 | #endif /* SLOGINACCOUNTVALIDATOR_H_ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.