phonebookui/Phonebook2/GroupExtension/inc/mpgugroupcmd.h
branchRCL_3
changeset 85 38bb213f60ba
parent 74 6b5524b4f673
equal deleted inserted replaced
74:6b5524b4f673 85:38bb213f60ba
     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:  Phonebook 2 Group Extn command object interface.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MPGUGROUPCMD_H
       
    20 #define MPGUGROUPCMD_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <e32std.h>
       
    24 
       
    25 // FORWARD DECLARATIONS
       
    26 
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31  * Group extention command object interface. 
       
    32  * 
       
    33  * Pbk2 Group Extention cmd's are inherited from this interface
       
    34  * along with MPbk2Command  
       
    35  */
       
    36 class MPguGroupCmd
       
    37     {
       
    38     public: // Interface
       
    39 
       
    40         /**
       
    41          * Destructor.
       
    42          */
       
    43         virtual ~MPguGroupCmd()
       
    44                 {};
       
    45 
       
    46         /**
       
    47          * Aborts the Command
       
    48          */
       
    49         virtual void Abort() = 0;
       
    50         
       
    51     };
       
    52 
       
    53 #endif // MPGUGROUPCMD_H
       
    54 
       
    55 // End of File