summaryrefslogtreecommitdiff
path: root/core/settings
authorclem <clem>2004-09-30 21:44:18 (UTC)
committer clem <clem>2004-09-30 21:44:18 (UTC)
commit83d2361ccae308696694ab65f69ba8aa999f6696 (patch) (side-by-side diff)
tree0ff83a541c6e1167c34294d2b735657709a6f9a5 /core/settings
parenta823eb5b367c32936a9958f69a9981a55e2022bf (diff)
downloadopie-83d2361ccae308696694ab65f69ba8aa999f6696.zip
opie-83d2361ccae308696694ab65f69ba8aa999f6696.tar.gz
opie-83d2361ccae308696694ab65f69ba8aa999f6696.tar.bz2
simpler explanation
Diffstat (limited to 'core/settings') (more/less context) (ignore whitespace changes)
-rw-r--r--core/settings/security/demo/main.cpp14
1 files changed, 2 insertions, 12 deletions
diff --git a/core/settings/security/demo/main.cpp b/core/settings/security/demo/main.cpp
index d853872..1c49f57 100644
--- a/core/settings/security/demo/main.cpp
+++ b/core/settings/security/demo/main.cpp
@@ -2,21 +2,11 @@
#include <opie2/oapplication.h>
-/// main() function of the opie-multiauth-standalone demonstration application
-/**
- * Calls each plugin one after the other, and asks them to perform one authentication.
- * It loads the plugins one after another through the MultiauthPluginInterface,
- * then calls MultiauthPluginObject::authenticate().
- * \em Note: calls are not parsed by doxygen since they are done via a QInterfacePtr:
- * \see http://dudu.dyn.2-h.org/nist/doxydoc/allOpie//classQInterfacePtr.html
- */
+/// Run an authentication sequence using the global opie-security settings
int main( int argc, char ** argv )
{
Opie::Core::OApplication app(argc, argv, "Multi-authentication demo");
- /*
- * Run authentication and retursn if successfull
- * This uses the global settings
- */
+ // Run the authentication process until it succeeds
Opie::Security::MultiauthPassword::authenticate();
}