cellular/telephonysettings/xqbindings/psetwrapper/tsrc/mocks/mock_cphcltemergencycall.h
branchRCL_3
changeset 20 987c9837762f
parent 19 7d48bed6ce0c
child 21 0a6dd2dc9970
--- a/cellular/telephonysettings/xqbindings/psetwrapper/tsrc/mocks/mock_cphcltemergencycall.h	Tue Aug 31 15:45:17 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,144 +0,0 @@
-/*
-* Copyright (c) 2009 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:
-*
-*/
-
-#ifndef CPHCLTEMERGENCYCALLMOCK_H
-#define CPHCLTEMERGENCYCALLMOCK_H
-
-#include <e32base.h>
-#include <cphcltemergencycall.h>
-
-// FORWARD DECLARATIONS
-class MPhCltEmergencyCallObserver;
-
-// CLASS DECLARATION
-/**
-*   Phone Client Emergency Call Api for emergency number query
-*   and emergency dialing.
-*
-*   @lib phoneclient.lib
-*   @since SeriesS60_3.2
-*/
-class CPhCltEmergencyCallMock : public CPhCltEmergencyCall
-    {
-    public:
-        static TBool iSimulateEmergencyNumberMatch;
-    
-    public:  // Constructors and destructor
- 
-        /**
-        * Create an instance that implements the interface.
-        *
-        * @param aObserver It is the observer for the instance.
-        * @return Returns the created instance.
-        */
-        static CPhCltEmergencyCallMock* NewL( 
-            MPhCltEmergencyCallObserver* aObserver );
-
-    public: // New functions    
-        
-       /**
-        * Returns information whether the number specified was an emergency number.
-        * 
-        * @param aNumber Number to be queried. aNumber might contain prefix (SS code)
-        *                and/or postfix (DTMF part).  
-        *                The aNumber parameter should be a buffer and the 
-        *                clients are provided with a typedef called 
-        *                TPhCltEmergencyNumber.
-        *
-        * @param aIsEmergencyNumber If ETrue, then the aNumber 
-        *                           parameter included emergency number.
-        * @return Returns error code of the success of the operation.
-        */
-        TInt IsEmergencyPhoneNumber( const TDesC& aNumber, 
-            TBool& aIsEmergencyNumber );
-
-        /**
-        * Method can be used to check if the number specified contains 
-        * a valid emergency number in the end of the number.
-        * 
-        * @param aNumber Number to be queried, matched emergency number 
-        *                is returned in this parameter.
-        *                The aNumber parameter should be a buffer and the 
-        *                clients are provided with a typedef called 
-        *                TPhCltTelephoneNumber.
-        *             
-        * @param aIsEmergencyNumber If ETrue, then the aNumber parameter 
-        *                           was emergency number. 
-        * @return Returns error code of the success of the operation.
-        */
-        TInt FindEmergencyPhoneNumber( TDes& aNumber, 
-            TBool& aIsEmergencyNumber );
-
-        /**
-        * Initiates an emergency call.
-        *
-        * @param aNumber Emergency number to be dialed.
-        *                The aNumber parameter should be a buffer and the 
-        *                clients are provided with a typedef called 
-        *                TPhCltEmergencyNumber. 
-        *
-        *                If the aNumber parameter supplies an "empty" buffer 
-        *                the call is created either dialing the default emergency 
-        *                phone number or use the SET UP EMERGENCY request  
-        *                that does not contain a  dialling number.
-        *
-        *                Leaves with KErrArgument, if parameter aNumber was
-        *                not an emergency number.
-        *
-        * @pre IsActive() returns EFalse, otherwise leaves with KErrInUse.
-        */
-        void DialEmergencyCallL( const TDesC& aNumber );
-        
-        /**
-        * Returns information whether the number specified was an emergency 
-        * number and also returns the plain emergency number.
-        * 
-        * @param aNumber Number to be queried.aNumber might contain prefix (SS code)
-        *                and/or postfix (DTMF part).
-        *                The aNumber parameter should be a buffer and the 
-        *                clients are provided with a typedef called 
-        *                TPhCltEmergencyNumber. 
-        *
-        * @param aMatchedEmergencyNumber Matched emergencynumber without prefix or 
-        *                postfix is returned in this parameter. The aMatchedEmergencyNumber 
-        *                parameter should be a buffer and the clients are
-        *                provided with atypedef called TPhCltEmergencyNumber.
-        * 
-        * @param aIsEmergencyNumber If ETrue, then the aNumber 
-        *                           parameter included emergency number.
-        *
-        * @return Returns error code of the success of the operation.
-        */
-        TInt IsEmergencyPhoneNumber( const TDesC& aNumber,
-            TDes& aMatchedEmergencyNumber, TBool& aIsEmergencyNumber );                    
-        
-    protected:
-
-        /**
-        * C++ constructor.
-        */
-        CPhCltEmergencyCallMock( MPhCltEmergencyCallObserver* aObserver );
-        
-        void RunL();
-        
-        void DoCancel();
-
-    };
-
-#endif      // CPHCLTEMERGENCYCALLMOCK_H
-
-// End of File