phonebookui/Phonebook2/Commands/inc/CPbk2SyncMlCmd.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 10:12:17 +0200
changeset 0 e686773b3f54
permissions -rw-r--r--
Revision: 201003 Kit: 201005

/*
* Copyright (c) 2005-2007 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 SyncML command object.
*
*/


#ifndef CPBK2SYNCMLCMD_H
#define CPBK2SYNCMLCMD_H

// INCLUDES
#include <e32base.h>
#include <MPbk2Command.h>
#include <AiwCommon.h>

// FORWARD DECLARATIONS
class CAiwServiceHandler;

// CLASS DECLARATION

/**
 * Phonebook 2 SyncML command object.
 */
NONSHARABLE_CLASS(CPbk2SyncMlCmd) : 
        public CBase,
        public MPbk2Command
    {
    public: // Construction and destruction
        /**
         * Creates a new instance of this class.
         *
         * @param aCommandId        Command id.
         * @param aServiceHandler   Service handler.
         * @return  A new instance of this class.
         */
        static CPbk2SyncMlCmd* NewL (
                TInt aCommandId,
                CAiwServiceHandler& aServiceHandler );

        /**
         * Destructor.
         */
        ~CPbk2SyncMlCmd();

    public: // From MPbk2Command
        void ExecuteLD();
        void ResetUiControl(
                MPbk2ContactUiControl& aUiControl );
        void AddObserver(
                MPbk2CommandObserver& aObserver );

    private:  // Implementation
        CPbk2SyncMlCmd (
                TInt aCommandId,
                CAiwServiceHandler& aServiceHandler );

    private: // Data
        /// Own: Command id
        TInt iCommandId;
        /// Ref: AIW service handler
        CAiwServiceHandler& iServiceHandler;
    };

#endif // CPBK2SYNCMLCMD_H

// End of File