qthighway/xqserviceipc/xqserviceipc/xqserviceipc_apasymbiansession.cpp
changeset 24 9d760f716ca8
parent 4 90517678cc4f
--- a/qthighway/xqserviceipc/xqserviceipc/xqserviceipc_apasymbiansession.cpp	Wed Aug 18 10:38:12 2010 +0300
+++ b/qthighway/xqserviceipc/xqserviceipc/xqserviceipc_apasymbiansession.cpp	Thu Sep 02 21:20:48 2010 +0300
@@ -36,14 +36,13 @@
 
 /*!
     \class RApaIPCSession
-
-    Symbian class encapsulating RMessage2 interface
+    \brief Symbian class encapsulating RMessage2 interface
 */
 
 /*!
-    Send a message
-    @param aFunction function code
-    @return message completion code
+    Send a message.
+    \param aFunction Function code.
+    \return message Completion code.
 */
 TInt RApaIPCSession::SendReceiveL(TInt aFunction) const
 {
@@ -52,10 +51,10 @@
 }
 
 /*!
-    Send a message
-    @param aFunction function code
-    @param aArgs parameter to server
-    @return message completion code
+    Send a message.
+    \param aFunction Function code.
+    \param aArgs Parameter to server.
+    \return Message completion code.
 */
 TInt RApaIPCSession::SendReceiveL(TInt aFunction, const TIpcArgs& aArgs) const
 {
@@ -64,10 +63,10 @@
 }
 
 /*!
-    Send message asynchronously
-    @param aFunction function code
-    @param aStatus the request status object used to contain the 
-           completion status of the request
+    Send message asynchronously.
+    \param aFunction Function code.
+    \param aStatus The request status object used to contain the 
+           completion status of the request.
 */
 EXPORT_C void RApaIPCSession::SendReceive(TInt aFunction,
                                           TRequestStatus& aStatus) const
@@ -78,11 +77,11 @@
 }
 
 /*!
-    Send message asynchronously
-    @param aFunction function code
-    @param aArgs parameter to server
-    @param aStatus the request status object used to contain the 
-           completion status of the request
+    Send message asynchronously.
+    \param aFunction Function code.
+    \param aArgs Parameter to server.
+    \param aStatus The request status object used to contain the 
+           completion status of the request.
 */
 void RApaIPCSession::SendReceive(TInt aFunction,
                                        const TIpcArgs& aArgs,
@@ -94,10 +93,10 @@
 }
 
 /*!
-    Connect to server
-    @param aServer server name
-    @param aVersion version of the server
-    @return KErrNone success, otherwise system error code
+    Connect to server.
+    \param aServer Server name.
+    \param aVersion Version of the server.
+    \return KErrNone on success, otherwise system error code.
 */
 TInt RApaIPCSession::Connect(const TDesC& aServer, 
                                  const TVersion& aVersion)
@@ -109,8 +108,8 @@
 }
 
 /*!
-    Get version info
-    @return version info
+    Get version info.
+    \return Version info.
 */
 TVersion RApaIPCSession::Version() const
 {
@@ -118,13 +117,20 @@
     return iVersion;
 }
 
-
+/*!
+    Get service uid.
+    \return Service uid.
+*/
 TUid RApaIPCSession::ServiceUid() const
 {
     XQSERVICE_DEBUG_PRINT("RApaIPCSession::ServiceUid");
     return iUid;
 }
 
+/*!
+    Set service uid.
+    \param uid Service uid to set.
+*/
 void RApaIPCSession::setServiceUid(TInt uid)
 {
     XQSERVICE_DEBUG_PRINT("RApaIPCSession::setServiceUid %x", uid);