Committing ZeroConf for 10.1 to the FCL.
/*
* 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:
*
*/
/*
* CEngSettingsObserver.h
*
* Created on: Jun 17, 2010
* Author: lachamar
*/
#ifndef CENGSETTINGSOBSERVER_H_
#define CENGSETTINGSOBSERVER_H_
#endif /* CENGSETTINGSOBSERVER_H_ */
#include <e32base.h>
#include <btserversdkcrkeys.h>
#include <btengsettings.h>
class CEngSettingsObserver : public CBase,public MBTEngSettingsObserver
{
public:
void PowerStateChanged( TBTPowerStateValue aState );
void VisibilityModeChanged( TBTVisibilityMode aState );
public:
static CEngSettingsObserver* NewLC();
~CEngSettingsObserver();
private:
CEngSettingsObserver();
void ConstructL();
private:
};