satengine/SatServer/SatClient/inc/CSatAllowRefreshMonitor.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
--- a/satengine/SatServer/SatClient/inc/CSatAllowRefreshMonitor.h	Mon Aug 23 15:50:31 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,124 +0,0 @@
-/*
-* Copyright (c) 2002-2007 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:  Waits for the refresj query notification
-*
-*/
-
-
-
-#ifndef CSATALLOWREFRESHMONITOR_H
-#define CSATALLOWREFRESHMONITOR_H
-
-//  INCLUDES
-#include <e32base.h>
-#include <msatrefreshobserver.h>
-
-// FORWARD DECLARATIONS
-class RSatRefresh;
-
-// CLASS DECLARATION
-
-/**
-*  Active object to wait the refresh query notification.
-*
-*  @lib SatClient.lib
-*  @since 2.6
-*/
-class CSatAllowRefreshMonitor : public CActive
-    {
-    public:  // Constructors and destructor
-
-        /**
-        * Two-phased constructor.
-        * @param aObserver Observer for refresh query.
-        * @param aRefresh Refresh sub-session.
-        */
-        static CSatAllowRefreshMonitor* NewL(
-            MSatRefreshObserver& aObserver,
-            RSatRefresh& aRefresh );
-
-        /**
-        * Destructor.
-        */
-        virtual ~CSatAllowRefreshMonitor();
-
-    public: // New functions
-
-        /**
-        * Set files to be observed.
-        * @since 3.0
-        * @param aObservedFiles List of files to be observed for refresh.
-        */
-        void ObserveFiles( const TSatRefreshFiles& aObservedFiles );
-
-        /**
-        * Starts waiting for the refresh query.
-        */
-        void Start();
-
-    protected:  // Functions from base classes
-
-        /**
-        * From CActive
-        */
-        void RunL();
-
-        /**
-        * From CActive
-        * @param aStatus Request status.
-        */
-        TInt RunError( TInt aError );
-
-        /**
-        * From CActive
-        */
-        void DoCancel();
-
-    private:
-
-        /**
-        * C++ default constructor.
-        */
-        CSatAllowRefreshMonitor(
-            MSatRefreshObserver& aObserver,
-            RSatRefresh& aRefresh );
-
-    private:
-
-        // Notified when query comes.
-        MSatRefreshObserver& iObserver;
-
-        // Refresh sub-sesion.
-        RSatRefresh& iRefresh;
-
-        // Changing files
-        TSatRefreshFiles iChangingFiles;
-
-        // Package of chaning files.
-        TPckg<TSatRefreshFiles> iChangingFilesPckg;
-
-        // Observed files
-        TSatRefreshFiles iObservedFiles;
-
-        // Refresh type.
-        TSatRefreshType iType;
-
-        // Refresh type package.
-        TPckg<TSatRefreshType> iTypePckg;
-
-    };
-
-#endif      // CSATALLOWREFRESHMONITOR_H
-
-// End of File