phoneclientserver/phoneclient/Inc/ExtCall/ExtCall_Aiw/RPhCltExtCall.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
--- a/phoneclientserver/phoneclient/Inc/ExtCall/ExtCall_Aiw/RPhCltExtCall.h	Mon Aug 23 15:50:31 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,98 +0,0 @@
-/*
-* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). 
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:  It is the client side remote class of call subsession object.
-*
-*/
-
-
-#ifndef RPHCLTEXTCALL_H
-#define RPHCLTEXTCALL_H
-
-//  INCLUDES
-#include <e32std.h>
-#include "phclttypes.h" 
-#include "rphcltserver.h" 
-
-// FORWARD DECLARATIONS
-class CPhCltExtPhoneDialData;
-
-// CLASS DECLARATION
-
-/**
-*  It is the client side remote class of call subsession object.
-*
-*  @lib phoneclient.lib
-*  @since 1.0
-*/
-class RPhCltExtCall : public RSubSessionBase
-    {
-    public:  // Constructors and destructor
-
-        /**
-         * C++ default constructor.
-         */
-        RPhCltExtCall();
-   
-        
-    public:  // New functions
-
-        /**
-         * Opens the subsession.
-         *
-         * @param aServer It is the session of which subsession this is.
-         * @return Returns error code.
-         */       
-        TInt Open( RPhCltServer& aServer );
-
-        /**
-         * Closes the subsession.
-         */       
-        void Close();
-                
-        /**
-        * Makes a call (asynchronous).
-        *
-        * @param aStatus It is used to notify the completion of the request. 
-        *                Then it indicates the success/failure of the operation.
-        * @param aData The object containing the dial parameters
-        * @param aLength dial data package length
-        */       
-        void Dial( 
-            TRequestStatus& aStatus, 
-            TDesC8& aData, TInt aLength );
-
-        /**
-        * Cancels the dialling request.
-        */       
-        void CancelDial() const;
-
-    private:
-                
-        // By default, prohibit copy constructor
-        RPhCltExtCall( const RPhCltExtCall& );
-        // Prohibit assigment operator
-        RPhCltExtCall& operator= ( const RPhCltExtCall& );
-        
-    
-
-       
-   
-    private: // Data
-
-        
-
-    };
-#endif      // RPHCLTEXTCALL_H   
-            
-// End of File