phonebookui/Phonebook2/GroupExtension/inc/mpgugroupcmd.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 15 Sep 2010 11:56:55 +0300
branchRCL_3
changeset 74 6b5524b4f673
permissions -rw-r--r--
Revision: 201035 Kit: 201036

/*
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  Phonebook 2 Group Extn command object interface.
*
*/


#ifndef MPGUGROUPCMD_H
#define MPGUGROUPCMD_H

// INCLUDES
#include <e32std.h>

// FORWARD DECLARATIONS


// CLASS DECLARATION

/**
 * Group extention command object interface. 
 * 
 * Pbk2 Group Extention cmd's are inherited from this interface
 * along with MPbk2Command  
 */
class MPguGroupCmd
    {
    public: // Interface

        /**
         * Destructor.
         */
        virtual ~MPguGroupCmd()
                {};

        /**
         * Aborts the Command
         */
        virtual void Abort() = 0;
        
    };

#endif // MPGUGROUPCMD_H

// End of File