-rw-r--r-- | core/settings/security/demo/main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/settings/security/demo/main.cpp b/core/settings/security/demo/main.cpp index df91250..d853872 100644 --- a/core/settings/security/demo/main.cpp +++ b/core/settings/security/demo/main.cpp | |||
@@ -1,23 +1,22 @@ | |||
1 | #include <opie2/multiauthmainwindow.h> | 1 | #include <opie2/multiauthpassword.h> |
2 | #include <opie2/multiauthcommon.h> | ||
3 | 2 | ||
4 | #include <opie2/oapplication.h> | 3 | #include <opie2/oapplication.h> |
5 | 4 | ||
6 | /// main() function of the opie-multiauth-standalone demonstration application | 5 | /// main() function of the opie-multiauth-standalone demonstration application |
7 | /** | 6 | /** |
8 | * Calls each plugin one after the other, and asks them to perform one authentication. | 7 | * Calls each plugin one after the other, and asks them to perform one authentication. |
9 | * It loads the plugins one after another through the MultiauthPluginInterface, | 8 | * It loads the plugins one after another through the MultiauthPluginInterface, |
10 | * then calls MultiauthPluginObject::authenticate(). | 9 | * then calls MultiauthPluginObject::authenticate(). |
11 | * \em Note: calls are not parsed by doxygen since they are done via a QInterfacePtr: | 10 | * \em Note: calls are not parsed by doxygen since they are done via a QInterfacePtr: |
12 | * \see http://dudu.dyn.2-h.org/nist/doxydoc/allOpie//classQInterfacePtr.html | 11 | * \see http://dudu.dyn.2-h.org/nist/doxydoc/allOpie//classQInterfacePtr.html |
13 | */ | 12 | */ |
14 | int main( int argc, char ** argv ) | 13 | int main( int argc, char ** argv ) |
15 | { | 14 | { |
16 | Opie::Core::OApplication app(argc, argv, "Multi-authentication demo"); | 15 | Opie::Core::OApplication app(argc, argv, "Multi-authentication demo"); |
17 | 16 | ||
18 | /* | 17 | /* |
19 | * Run authentication and retursn if successfull | 18 | * Run authentication and retursn if successfull |
20 | * This uses the global settings | 19 | * This uses the global settings |
21 | */ | 20 | */ |
22 | Opie::Security::MultiauthPassword::authenticate(); | 21 | Opie::Security::MultiauthPassword::authenticate(); |
23 | } | 22 | } |