javamanager/javacaptain/extensionplugins/settingslistener/inc/settingslistenerextension.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 18 Aug 2010 09:43:15 +0300
changeset 61 bf7ee68962da
parent 48 e0d6e9bd3ca7
permissions -rw-r--r--
Revision: v2.2.9 Kit: 201033

/*
* 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:  Extension plugin which is used for monitoring changes in various
*                     system settings.
*
*/

#ifndef SETTINGSLISTENEREXTENSION_H
#define SETTINGSLISTENEREXTENSION_H

#include "javaosheaders.h"

#include "extensionplugininterface.h"
#include "settingslistenerinterface.h"

namespace java
{
namespace captain
{

class CoreInterface;

OS_NONSHARABLE_CLASS(SettingsListenerExtension) :  public ExtensionPluginInterface
{
public:
    SettingsListenerExtension();
    virtual ~SettingsListenerExtension();

    // ExtensionPluginInterface
    virtual void startPlugin(CoreInterface* aCore);
    virtual void stopPlugin();

protected:

private:
    CoreInterface* mCore; // resource not owned
    SettingsListenerInterface* mSettingsListenerImpl; // resource owned
};

} // namespace captain
} // namespace java

#endif // SETTINGSLISTENEREXTENSION_H