phonebookui/Phonebook2/ccapplication/ccacontactorservice/inc/ccacontactorvoipoperation.h
branchRCL_3
changeset 12 4ae315f230bc
parent 0 e686773b3f54
--- a/phonebookui/Phonebook2/ccapplication/ccacontactorservice/inc/ccacontactorvoipoperation.h	Tue May 11 16:00:21 2010 +0300
+++ b/phonebookui/Phonebook2/ccapplication/ccacontactorservice/inc/ccacontactorvoipoperation.h	Tue May 25 12:26:45 2010 +0300
@@ -51,16 +51,20 @@
      * 
      * @param aParam The address to make the voip call to
      * @param aServiceID The voip service ID
+     * @param aContactLinkArray Streamed contact link array of contact to be communicated at
      */
-    static CCCAContactorVOIPOperation* NewL(const TDesC& aParam, TUint32 aServiceID);
+    static CCCAContactorVOIPOperation* NewL(const TDesC& aParam, 
+            TUint32 aServiceID, const TDesC8& aContactLinkArray);
 
     /**
      * Two-phased constructor.
      * 
      * @param aParam The address to make the voip call to
      * @param aServiceID The voip service ID
+     * @param aContactLinkArray Streamed contact link array of contact to be communicated at
      */
-    static CCCAContactorVOIPOperation* NewLC(const TDesC& aParam, TUint32 aServiceID);
+    static CCCAContactorVOIPOperation* NewLC(const TDesC& aParam, 
+            TUint32 aServiceID, const TDesC8& aContactLinkArray);
     
     /**
      * Executes the operation (launches the voip call)
@@ -74,8 +78,10 @@
      * 
      * @param aParam The address to make the voip call to
      * @param aServiceID The voip service ID
+     * @param aContactLinkArray Streamed contact link array of contact to be communicated at
      */
-    CCCAContactorVOIPOperation(const TDesC& aParam, TUint32 aServiceID);
+    CCCAContactorVOIPOperation(const TDesC& aParam, 
+            TUint32 aServiceID, const TDesC8& aContactLinkArray);
 
     /**
      * EPOC default constructor for performing 2nd stage construction
@@ -86,6 +92,10 @@
      * The voip service id
      */
     TUint32 iServiceId;
+    
+    
+    //Doesnt Own : Streamed contact link array of contact
+    const TDesC8& iContactLinkArray;
 
     };