satengine/SatServer/Engine/inc/CSatSAPChangeObserver.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
--- a/satengine/SatServer/Engine/inc/CSatSAPChangeObserver.h	Mon Aug 23 15:50:31 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,89 +0,0 @@
-/*
-* 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:  Observes SIM Access Profile status changes.
-*
-*/
-
-
-
-#ifndef CSATSAPCHANGEOBSERVER_H
-#define CSATSAPCHANGEOBSERVER_H
-
-//  INCLUDES
-#include <e32base.h>
-#include "MSatSystemStateObserver.h"
-
-// FORWARD DECLARATION
-class CSatCommandContainer;
-class MSatSystemStateChangeNotifier;
-
-// CLASS DECLARATION
-
-/**
-*  Observes SIM Access Profile status change and informs CSatCommandContriner
-*  of a possible change.
-*
-*  @lib SatEngine
-*  @since Series 60 3.0
-*/
-class CSatSAPChangeObserver : public CBase,
-                              public MSatSystemStateObserver
-    {
-    public:  // Constructors and destructor
-
-        /**
-        * Two-phased constructor.
-        * @param aContainer Container of command handlers.
-        */
-        static CSatSAPChangeObserver* NewL( CSatCommandContainer& aContainer );
-
-        /**
-        * Destructor.
-        */
-        virtual ~CSatSAPChangeObserver();
-
-    public: // From base classes
-
-        /**
-        * From MSatSystemStateObserver Notifies that system state changed.
-        * @param aValue The new value that has changed.
-        */
-        void StateChanged( const TInt aValue );
-
-    private:
-
-        /**
-        * C++ default constructor.
-        * @param aContainer Container of command handlers.
-        */
-        CSatSAPChangeObserver( CSatCommandContainer& aContainer );
-
-        /**
-        * By default Symbian 2nd phase constructor is private.
-        */
-        void ConstructL();
-
-    private:  // Data
-
-        // Command container.
-        CSatCommandContainer& iContainer;
-
-        // System state notifier.
-        MSatSystemStateChangeNotifier* iStateNotifier;
-
-    };
-
-#endif      // CSATSAPCHANGEOBSERVER_H
-
-// End of File