videoutils_plat/videoscheduler_api/inc/ipvideo/RCseSchedulerServiceBase.h
branchRCL_3
changeset 23 13a33d82ad98
parent 0 822a42b6c3f1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/videoutils_plat/videoscheduler_api/inc/ipvideo/RCseSchedulerServiceBase.h	Wed Sep 01 12:20:37 2010 +0100
@@ -0,0 +1,102 @@
+/*
+* 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:    Interface for Cse Scheduler engine Client's ServiceBase class.*
+*/
+
+
+
+
+
+#ifndef __RCSESCHEDULERSERVICEBASE_H
+#define __RCSESCHEDULERSERVICEBASE_H
+
+//  INCLUDES
+#include <e32base.h>
+
+// CONSTANTS
+// None.
+
+// MACROS
+// None.
+
+// DATA TYPES
+// None.
+
+// FUNCTION PROTOTYPES
+// None.
+
+// FORWARD DECLARATIONS
+class RCseSchedulerClient;
+
+// CLASS DECLARATION
+
+/**
+*  Base class for services. This represents a client-side sub-session 
+*  and has a corresponding sub-session object on the server-side.
+*
+*  @lib CseSchedulerClient.dll
+*/
+class RCseSchedulerServiceBase : public RSubSessionBase
+    {
+    public:
+        /**
+        * C++ default constructor.
+        */
+        RCseSchedulerServiceBase();
+
+        /**
+        * Destructor.
+        * @return None.
+        */
+        virtual ~RCseSchedulerServiceBase();
+        
+        /**
+        * Open server.
+        * @param aServer 
+        * @return KErrNone if successful, otherwise one of the system-wide error codes.
+        */
+        TInt Open( RCseSchedulerClient& aClient );
+
+        /**
+        * Close server.
+        * @return None
+        */
+        void Close();
+
+        /**
+        * Uses user panic to panic client.
+        * @param aFault Panic reason.
+        * @return None.
+        */
+        void PanicClient( TInt aFault ) const;
+
+        /**
+        * Sessionhandle
+        */
+        inline RCseSchedulerClient& SessionHandle() const { return *iClient; }
+
+    private:
+
+        /**
+        * Pointer to client. Own.
+        */
+        RCseSchedulerClient* iClient; 
+
+    };
+
+#endif // __RCSESCHEDULERSERVICEBASE_H
+
+// End of File
+
+