zeroconf/server/inc/CEngSettingsObserver.h
changeset 14 da856f45b798
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/zeroconf/server/inc/CEngSettingsObserver.h	Thu Jun 24 19:09:47 2010 +0530
@@ -0,0 +1,58 @@
+/*
+* 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:
+     
+    };