eapol/eapol_framework/eapol_symbian/am/eap_notifier/inc/eap_auth_observer.h
changeset 36 c98682f98478
parent 34 ad1f037f1ac2
child 49 43351a4f2da3
--- a/eapol/eapol_framework/eapol_symbian/am/eap_notifier/inc/eap_auth_observer.h	Thu Jun 24 11:23:08 2010 +0300
+++ b/eapol/eapol_framework/eapol_symbian/am/eap_notifier/inc/eap_auth_observer.h	Fri Jul 09 10:14:51 2010 +0300
@@ -15,11 +15,29 @@
 *
 */
 
+/*
+* %version: 11 %
+*/
+
 #ifndef __EAPAUTHOBSERVER_H__
 #define __EAPAUTHOBSERVER_H__
 
+// System includes
+
+// User includes
+
+// Forward declarations
 class CEapAuthNotifier;
 
+// External data types
+
+//Global function prototypes
+
+//Constants
+
+/**
+ * EAP Observer
+ */
 NONSHARABLE_CLASS ( CEapAuthObserver ) : public CBase, public MHbDeviceDialogObserver
     {
     public:
@@ -29,29 +47,35 @@
         static CEapAuthObserver* NewL( 
                 CEapAuthNotifier* aNotifier
                 );
-        
-        /**
-        * Handles the setting of the notifier (dialog) type
-        * @param    aType EEapNotifierType
-        */
-        void SetNotifierType( CEapAuthNotifier::EEapNotifierType aType );
-        
+                
         /**
         * Destructor
         */
         ~CEapAuthObserver();
         
         /**
+        * Handles the setting of the notifier (dialog) type
+        *
+        * @param    aType EEapNotifierType
+        * return -
+        */
+        void SetNotifierType( CEapAuthNotifier::EEapNotifierType aType );
+            
+        /**
         * Handles the user input received from the dialog
+        *
         * @param    aData CHbSymbianVariantMap&
+        * return -
         */
-        void DataReceived(CHbSymbianVariantMap& aData);
+        void DataReceived( CHbSymbianVariantMap& aData );
         
         /**
         * Handles the closing of the dialog
+        *
         * @param    aCompletionCode TInt
+        * return -
         */
-        void DeviceDialogClosed( TInt /*aCompletionCode*/ );
+        void DeviceDialogClosed( TInt aCompletionCode );
     private:
         /**
         * Constructor
@@ -60,29 +84,38 @@
         
         /**
         * Handles the user name password input received from the dialog
+        *
         * @param    aData CHbSymbianVariantMap&
+        * return -
         */
         void UsernamePasswordDlgDataReceived( CHbSymbianVariantMap& aData );
           
         /**
         * Handles the password query user input received from the dialog
+        *
         * @param    aData CHbSymbianVariantMap&
+        * return -
         */
         void PwdQueryDataReceived( CHbSymbianVariantMap& aData );
         
         /**
         * Handles the old password query user input received from the dialog
+        *
         * @param    aData CHbSymbianVariantMap&
+        * return -
         */
         void OldPwdQueryDataReceived( CHbSymbianVariantMap& aData );
         
-    private:
-        /* Pointer to the object that triggered the dialog opening,
+    private: // Data
+        /** 
+         * Pointer to the object that triggered the dialog opening,
          * needed to update the information about the user input.
          */
         CEapAuthNotifier* iNotifier;
         
-        /* Current EAP notifier type to serve */
+        /** 
+         * Current EAP notifier type to serve 
+         */
         CEapAuthNotifier::EEapNotifierType iType;
     };