phonebookui/Phonebook2/ccapplication/ccacontactorservice/src/ccacontactorcalloperation.cpp
changeset 0 e686773b3f54
child 35 4ae315f230bc
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     1 /*
       
     2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Implementation of the call operation
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "ccacontactorheaders.h"
       
    21 
       
    22 
       
    23 // ============================ MEMBER FUNCTIONS ===============================
       
    24 
       
    25 // -----------------------------------------------------------------------------
       
    26 // CCCAContactorCallOperation::CCCAContactorCallOperation()
       
    27 // -----------------------------------------------------------------------------
       
    28 //
       
    29 CCCAContactorCallOperation::CCCAContactorCallOperation(const TDesC& aParam) : CCCAContactorOperation(aParam)
       
    30     {
       
    31     }
       
    32 
       
    33 // -----------------------------------------------------------------------------
       
    34 // CCCAContactorCallOperation::~CCCAContactorCallOperation()
       
    35 // -----------------------------------------------------------------------------
       
    36 //
       
    37 CCCAContactorCallOperation::~CCCAContactorCallOperation()
       
    38     {
       
    39     }
       
    40 
       
    41 // -----------------------------------------------------------------------------
       
    42 // CCCAContactorCallOperation::NewLC()
       
    43 // -----------------------------------------------------------------------------
       
    44 //
       
    45 CCCAContactorCallOperation* CCCAContactorCallOperation::NewLC(const TDesC& aParam)
       
    46     {
       
    47     CCCAContactorCallOperation* self = new (ELeave)CCCAContactorCallOperation(aParam);
       
    48     CleanupStack::PushL(self);
       
    49     self->ConstructL();
       
    50     return self;
       
    51     }
       
    52 
       
    53 // -----------------------------------------------------------------------------
       
    54 // CCCAContactorCallOperation::NewL()
       
    55 // -----------------------------------------------------------------------------
       
    56 //
       
    57 CCCAContactorCallOperation* CCCAContactorCallOperation::NewL(const TDesC& aParam)
       
    58     {
       
    59     CCCAContactorCallOperation* self=CCCAContactorCallOperation::NewLC(aParam);
       
    60     CleanupStack::Pop(); // self;
       
    61     return self;
       
    62     }
       
    63 
       
    64 // -----------------------------------------------------------------------------
       
    65 // CCCAContactorCallOperation::ConstructL()
       
    66 // -----------------------------------------------------------------------------
       
    67 //
       
    68 void CCCAContactorCallOperation::ConstructL()
       
    69     {
       
    70 
       
    71     }
       
    72 
       
    73 // -----------------------------------------------------------------------------
       
    74 // CCCAContactorCallOperation::ExecuteLD()
       
    75 // -----------------------------------------------------------------------------
       
    76 //
       
    77 void CCCAContactorCallOperation::ExecuteLD()
       
    78     {
       
    79     CleanupStack::PushL(this);
       
    80     CCCAPhoneCall::ExecuteL(iParam, CCCAPhoneCall::ECCACallTypeVoice);
       
    81     CleanupStack::PopAndDestroy(this);
       
    82     }
       
    83 // End of File