videoscheduler/SchedulerServer/inc/CCseSchedulerTimer.h
changeset 0 822a42b6c3f1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/videoscheduler/SchedulerServer/inc/CCseSchedulerTimer.h	Thu Dec 17 09:14:38 2009 +0200
@@ -0,0 +1,104 @@
+/*
+* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "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:    Header file for CCSeSchdulerTimer-class.*
+*/
+
+
+
+
+#ifndef _CCSESCHEDULERTIMER_H
+#define _CCSESCHEDULERTIMER_H
+
+//  INCLUDES
+#include <e32base.h>
+
+// CONSTANTS
+// None
+// MACROS
+// None
+
+// DATA TYPES
+// None
+
+// FUNCTION PROTOTYPES
+// None
+
+// FORWARD DECLARATIONS
+class MCseSchedulerTimerObserver;
+class CCseSchedulerPluginIF;
+
+/**
+* Timer for determining when schedules should be run.
+*/
+class CCseSchedulerTimer : public CTimer
+{
+	public:	// Constructors and destructors
+		/**
+        * Destructor.
+        */
+		virtual ~CCseSchedulerTimer();
+		
+		/**
+        * Two-phased constructor.
+        * @param    aObserver   A pointer back to server engine through observer
+        */
+		static CCseSchedulerTimer* NewL( MCseSchedulerTimerObserver* aObserver );
+
+	public:	// New methods
+		/**
+        * Sets timer to fire on given time
+        * @param    aTime   Time when timer is set to fire
+        * @return   None
+        */
+		void SetTimer( const TTime& aTime );
+
+	private: // Constructors and destructors
+	 	/**
+        * By default Symbian 2nd phase constructor is private.
+        */
+		void ConstructL();
+		
+		/**
+        * C++ default constructor.
+		* @param    aObserver   A pointer back to server engine through observer.
+        */
+		CCseSchedulerTimer( MCseSchedulerTimerObserver* aObserver );		
+		
+	private: // Functions from base classes
+		/**
+        * RunL
+        * @return   None
+        */	
+		void RunL();
+		
+		/**
+        * RunError
+        * @return   See CTimer documentation.
+        */
+		TInt RunError( TInt aError );
+		
+		/**
+        * DoCancel
+        * @return   None
+        */
+		void DoCancel();
+		
+	private: // Data
+		/**
+		* Pointer back to scheduler engine. Not own.
+		*/
+		MCseSchedulerTimerObserver* iObserver;
+};
+
+#endif //_CCSESCHEDULERTIMER_H
\ No newline at end of file