phoneapp/phonemediatorcenter/inc/mphoneshutdowncommand.h
changeset 0 5f000ab63145
equal deleted inserted replaced
-1:000000000000 0:5f000ab63145
       
     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: 
       
    15 *     Command Design Pattern's Command Interface for sending relevant Phone
       
    16 *     Engine message related to Video Telephony shutdown.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef MPHONESHUTDOWNCOMMAND_H
       
    22 #define MPHONESHUTDOWNCOMMAND_H
       
    23 
       
    24 /**
       
    25 *  Command Design Pattern's Command Interface for sending Phone Engine message
       
    26 *  when Video Telephony shutdown operation is done.
       
    27 */
       
    28 class MPhoneShutdownCommand
       
    29     {
       
    30     public:
       
    31         
       
    32         /**
       
    33         * Executes the Command.
       
    34         */
       
    35         virtual void ExecuteLD() = 0;
       
    36         
       
    37     };
       
    38     
       
    39 #endif // MPHONESHUTDOWNCOMMAND_H