phoneuis/easydialing/edcontactor/src/edcontactorvideocalloperation.cpp
branchRCL_3
changeset 3 8871b09be73b
equal deleted inserted replaced
2:c84cf270c54f 3:8871b09be73b
       
     1 /*
       
     2 * Copyright (c) 2010 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 video call operation
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "edcontactorheaders.h"
       
    21 
       
    22 // ============================ MEMBER FUNCTIONS ===============================
       
    23 
       
    24 // -----------------------------------------------------------------------------
       
    25 // CEDContactorVideocallOperation::CEDContactorVideocallOperation()
       
    26 // -----------------------------------------------------------------------------
       
    27 //
       
    28 CEDContactorVideocallOperation::CEDContactorVideocallOperation(const TDesC& aParam) : CEDContactorOperation(aParam)
       
    29     {
       
    30     // No implementation required
       
    31     }
       
    32 
       
    33 // -----------------------------------------------------------------------------
       
    34 // CEDContactorVideocallOperation::~CEDContactorVideocallOperation()
       
    35 // -----------------------------------------------------------------------------
       
    36 //
       
    37 CEDContactorVideocallOperation::~CEDContactorVideocallOperation()
       
    38     {
       
    39     }
       
    40 
       
    41 // -----------------------------------------------------------------------------
       
    42 // CEDContactorVideocallOperation::NewLC()
       
    43 // -----------------------------------------------------------------------------
       
    44 //
       
    45 CEDContactorVideocallOperation* CEDContactorVideocallOperation::NewLC(const TDesC& aParam)
       
    46     {
       
    47     CEDContactorVideocallOperation* self = new (ELeave)CEDContactorVideocallOperation(aParam);
       
    48     CleanupStack::PushL(self);
       
    49     self->ConstructL();
       
    50     return self;
       
    51     }
       
    52 
       
    53 // -----------------------------------------------------------------------------
       
    54 // CEDContactorVideocallOperation::NewL()
       
    55 // -----------------------------------------------------------------------------
       
    56 //
       
    57 CEDContactorVideocallOperation* CEDContactorVideocallOperation::NewL(const TDesC& aParam)
       
    58     {
       
    59     CEDContactorVideocallOperation* self=
       
    60             CEDContactorVideocallOperation::NewLC(aParam);
       
    61     CleanupStack::Pop(); // self;
       
    62     return self;
       
    63     }
       
    64 
       
    65 // -----------------------------------------------------------------------------
       
    66 // CEDContactorVideocallOperation::ConstructL()
       
    67 // -----------------------------------------------------------------------------
       
    68 //
       
    69 void CEDContactorVideocallOperation::ConstructL()
       
    70     {
       
    71     
       
    72     }
       
    73 
       
    74 // -----------------------------------------------------------------------------
       
    75 // CEDContactorVideocallOperation::ExecuteLD()
       
    76 // -----------------------------------------------------------------------------
       
    77 //
       
    78 void CEDContactorVideocallOperation::ExecuteLD()
       
    79     {
       
    80     CleanupStack::PushL(this);
       
    81     CEDPhoneCall::ExecuteL(iParam, CEDPhoneCall::ECCACallTypeVideo, ETrue );
       
    82     CleanupStack::PopAndDestroy(this);
       
    83     }
       
    84 // End of File