satengine/SatServer/inc/MSatEventMonitorContainer.h
changeset 0 ff3b6d0fd310
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/satengine/SatServer/inc/MSatEventMonitorContainer.h	Tue Feb 02 01:11:09 2010 +0200
@@ -0,0 +1,88 @@
+/*
+* 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:  API for container of event monitors
+*
+*/
+
+
+
+#ifndef MSATEVENTMONITORCONTAINER_H
+#define MSATEVENTMONITORCONTAINER_H
+
+//  INCLUDES
+#include <e32std.h>
+#include <etelsat.h>
+// CLASS DECLARATION
+
+/**
+*  Interface for observing events.
+*
+*  @lib SatEngine
+*  @since Series 60 3.0
+*/
+class MSatEventMonitorContainer
+    {
+    protected: // Constructors and destructor
+
+        /**
+        * C++ default constructor.
+        */
+        MSatEventMonitorContainer() {};
+
+        /**
+        * Destructor.
+        */
+        virtual ~MSatEventMonitorContainer() {};
+
+    public: // New functions
+
+        /**
+        * Updates monitors state.
+        * @param aEvents Events that should be monitored.
+        * @return KErrNone if all goes OK
+        */
+        virtual TInt SetUpEventMonitors( TUint aEvents ) = 0;
+
+        /**
+        * Cancels all monitors.
+        * @return KErrNone if all goes OK
+        */
+        virtual TInt CancelAllMonitors() = 0;
+
+        /**
+        * Solves language code.
+        * @param aLanguageId Resolved language ID
+        */
+        virtual void LanguageSettingL( TInt& aLanguageId ) = 0;
+
+        /**
+        * Gets the ISO639 language code.
+        * @param aId Language ID
+        * @param aText Language code can be read from this after function call.
+        */
+        virtual void GetLanguageString( const TInt aId, TDes& aText ) = 0;
+
+    private:
+
+        // Prohibit copy constructor if not deriving from CBase.
+        MSatEventMonitorContainer( const MSatEventMonitorContainer& );
+
+        // Prohibit assigment operator if not deriving from CBase.
+        MSatEventMonitorContainer& operator=( const MSatEventMonitorContainer& );
+
+    };
+
+#endif      // MSATEVENTMONITORCONTAINER_H
+
+// End of File