vtuis/videotelui/inc/features/dialer/cvtuicmdopendialer.h
branchRCL_3
changeset 35 779871d1e4f4
parent 0 ed9695c8bcbe
equal deleted inserted replaced
34:f15ac8e65a02 35:779871d1e4f4
       
     1 /*
       
     2 * Copyright (c) 2007 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:  Dialer open command.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_VTUICMDOPENDIALER_H
       
    20 #define C_VTUICMDOPENDIALER_H
       
    21 
       
    22 #include "cvtuifeaturecmdbase.h"
       
    23 
       
    24 class MVtUiCommandManager;
       
    25 
       
    26 /**
       
    27  *  CVtUiCmdOpenDialer
       
    28  *
       
    29  *  @since S60 v5.0
       
    30  */
       
    31 class CVtUiCmdOpenDialer : public CVtUiFeatureCmdBase
       
    32     {
       
    33 
       
    34 public:
       
    35 
       
    36     /**
       
    37      * Static constructor
       
    38      *
       
    39      * @param aCommandManager Reference to command manager.
       
    40      * @param aFeature Reference to minidialer feature.
       
    41      * @return Newly created instance to CVtUiCmdOpenDialer.
       
    42      */
       
    43     static CVtUiCmdOpenDialer* NewL( MVtUiCommandManager& aCommandManager,
       
    44         MVtUiFeature& aFeature );
       
    45 
       
    46     /**
       
    47      * Destructor
       
    48      */
       
    49     ~CVtUiCmdOpenDialer();
       
    50 
       
    51 private:
       
    52 
       
    53     /**
       
    54      * Constructor
       
    55      */
       
    56     CVtUiCmdOpenDialer( MVtUiCommandManager& aCommandManager,
       
    57         MVtUiFeature& aFeature );
       
    58 
       
    59     /**
       
    60      * 2nd constructor
       
    61      */
       
    62      void ConstructL();
       
    63 
       
    64 private:
       
    65 
       
    66     // Reference to command manager API.
       
    67     MVtUiCommandManager& iCommandManager;
       
    68 
       
    69     };
       
    70 
       
    71 #endif // C_VTUICMDOPENDIALER_H