systemswstubs/featuremanagerstub/inc/featmgrplugin.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 04 Oct 2010 00:04:35 +0300
changeset 46 e1758cbb96ac
parent 1 ffb8e2ddd8dc
permissions -rw-r--r--
Revision: 201039 Kit: 201039

/*
* Copyright (c) 2002-2005 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:  Feature Manger stub plugin header
*
*/


#ifndef __FEATMGRPLUGIN_H_
#define __FEATMGRPLUGIN_H_

#include <featureinfoplugin.h>
#include "plugintimer.h"


class CFeatMgrPlugin : public CFeatureInfoPlugin,
                       public MPluginTimerCallback
    {
    public:

        static CFeatMgrPlugin* NewL();
        virtual ~CFeatMgrPlugin();

        /**
        * Method to invoke a particular command in the plugin
        * @param aCommandId Command ID
        * @param aTransId   Transaction ID
        * @param aData      Data associated with command
        */
        virtual void ProcessCommandL( const FeatureInfoCommand::TFeatureInfoCmd aCommandId,
                                      const TUint8 aTransId,
                                      TDesC8& aData );
        
        // From MPluginTimerCallback
        void GenericTimerFiredL( MFeatureInfoPluginCallback& aService,
                                const FeatureInfoCommand::TFeatureInfoCmd aCommandId,
                                const TUint8 aTransId,
                                TInt aRetVal );
    private: // Construction

        CFeatMgrPlugin();
        void ConstructL();
        
       // RPointerArray<CPluginTimer> iTimers;
       CPluginTimer* iTimer;
 
    };

#endif // __FEATMGRPLUGIN_H_