syncmlfw/syncmlnotifier/inc/SyncMLQueryTimer.h
branchGCC_SURGE
changeset 53 b3a7d8e28262
parent 39 ac7f88fb2797
parent 44 39aa16f3fdc2
--- a/syncmlfw/syncmlnotifier/inc/SyncMLQueryTimer.h	Fri Jun 25 14:05:15 2010 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,96 +0,0 @@
-/*
-* Copyright (c) 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:  Message query with timeout.
-*
-*/
-
-
-
-#ifndef CSYNCMLQUERYTIMER_H
-#define CSYNCMLQUERYTIMER_H
-
-//  INCLUDES
-#include <e32base.h>
-
-// CLASS DECLARATION
-
-/**
-*  Timer observer class for SyncML notifier queries.
-*
-*  @lib SyncMLNotifier
-*  @since Series 60 3.0
-*/
-NONSHARABLE_CLASS ( MSyncMLQueryTimerObserver )
-    {
-    public: // New functions
-        /**
-        * Is called when the timer expires.
-        * @since Series 60 3.0
-        * @param None
-        * @return None
-        */
-        virtual void TimerExpired() = 0;
-    };
-
-/**
-*  Timer class for SyncML notifier queries.
-*
-*  @lib SyncMLNotifier
-*  @since Series 60 3.0
-*/
-NONSHARABLE_CLASS ( CSyncMLQueryTimer ) : public CTimer
-    {
-    public:  // Constructors and destructor
-        
-        /**
-        * Two-phased constructor.
-        */
-        static CSyncMLQueryTimer* NewL( MSyncMLQueryTimerObserver* aObserver );
-        
-        /**
-        * Destructor.
-        */
-        virtual ~CSyncMLQueryTimer();
-
-    public: // Functions from base classes
-
-        /**
-        * From CActive Is called when an event is received.
-        * @since Series 60 3.0
-        * @param None
-        * @return None
-        */
-        void RunL();
-        
-    private:
-
-        /**
-        * C++ default constructor.
-        */
-        CSyncMLQueryTimer( MSyncMLQueryTimerObserver* aObserver );
-
-        /**
-        * By default Symbian 2nd phase constructor is private.
-        */
-        void ConstructL();
-
-    private:    // Data
-        // Pointer to the timer observer instance.
-        MSyncMLQueryTimerObserver*  iObserver;
-         
-    };
-
-#endif      // CSYNCMLQUERYTIMER_H   
-            
-// End of File