phonecmdhandler/phonecmdhnlr/inc/PhoneHandlerAnswerCall.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
--- a/phonecmdhandler/phonecmdhnlr/inc/PhoneHandlerAnswerCall.h	Mon Aug 23 15:50:31 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,135 +0,0 @@
-/*
-* Copyright (c) 2002-2005 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: Declaration of CPhoneHandlerAnswerCall class.
-*
-*/
-
-
-#ifndef CPHONEHANDLERANSWERCALL_H
-#define CPHONEHANDLERANSWERCALL_H
-
-//  INCLUDES
-#include "phonehandlercallbase.h" 
-#include <RemConExtensionApi.h> 
-
-// CONSTANTS
-
-// MACROS
-
-// DATA TYPES
-
-// FUNCTION PROTOTYPES
-
-// FORWARD DECLARATIONS
-class CPhoneHandlerControl;
-
-// CLASS DECLARATION
-
-/**
-*  Handles answer call key press.
-*
-*  @lib PhoneCmdHandler
-*  @since S60 3.1
-*/
-NONSHARABLE_CLASS( CPhoneHandlerAnswerCall ) : public CPhoneHandlerCallBase
-                                               
-    {
-    public:  // Constructors and destructor
-        
-        /**
-        * Two-phased constructor.
-        */
-        static CPhoneHandlerAnswerCall* NewL( 
-                CPhoneHandlerControl& aControl,
-                TRemConExtCallHandlingApiOperationId aOperation
-                    = ERemConExtAnswerCall );
-        
-        /**
-        * Destructor.
-        */
-        virtual ~CPhoneHandlerAnswerCall();
-
-    public: // New functions
-    
-    public: // Functions from base classes
-
-        /**
-        * From MPhoneHandlerService. Starts processing service.
-        * @since S60 3.1
-        * @return void
-        */
-        void Process();
-        
-        /**
-        * From MPhoneHandlerService. Deletes service.
-        * @since S60 3.1
-        * @return void
-        */
-        void Delete();
-        
-        /**
-        * From MPhoneHandlerObserver. Notifies when asynchronous request has 
-        * been completed.
-        * @since S60 3.1
-        * @param aError request error code
-        * @return void
-        */
-        void RequestCompleted( const TInt aError );
-                
-    protected:  // New functions
-            
-    protected:  // Functions from base classes
-        
-    private:
-
-        /**
-        * C++ default constructor.
-        */
-        CPhoneHandlerAnswerCall( 
-                CPhoneHandlerControl& aControl, 
-                TRemConExtCallHandlingApiOperationId aOperation );
-
-        /**
-        * By default Symbian 2nd phase constructor is private.
-        */
-        void ConstructL();
-    
-    public:     // Data
-    
-    protected:  // Data
-    
-    private:    // Data
-            
-        // reference to control
-        CPhoneHandlerControl& iControl;
-        
-        // RemConExtensionApi command which initiates answer call in BT case 
-        // is either ERemConExtAnswerCall or ERemConExtAnswerEnd.
-        // RemConExtensionApi command which initiates end call in wired case 
-        // is ERemConExtAnswerEnd.
-        // iOperation is used to give response to exact RemConExtensionApi
-        // command.
-        TRemConExtCallHandlingApiOperationId iOperation;
-    
-    public:     // Friend classes
-   
-    protected:  // Friend classes
-   
-    private:    // Friend classes
-   
-    };
-
-#endif      // CPHONEHANDLERANSWERCALL_H   
-            
-// End of File