satengine/SatServer/inc/msatmediatoreventprovider.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
--- a/satengine/SatServer/inc/msatmediatoreventprovider.h	Mon Aug 23 15:50:31 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,83 +0,0 @@
-/*
-* Copyright (c) 2005-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:  Provider of the SAT Mediator Events.
-*
-*/
-
-
-
-#ifndef M_MSATMEDIATOREVENTPROVIDER_H
-#define M_MSATMEDIATOREVENTPROVIDER_H
-
-
-#include <e32std.h>
-
-
-/**
-*  Mediator Event provider interface.
-*
-*  Responsible to notify Mediator Event Consumers about SAT Mediator Events.
-*
-*  @lib SatEngine
-*  @since S60 v3.1
-*/
-class MSatMediatorEventProvider
-    {
-    
-public:  
-
-    MSatMediatorEventProvider() {};
-
-    virtual ~MSatMediatorEventProvider() {};
-
-    /**
-     * Raises SAT Mediator Event.
-     *
-     * @since S60 v3.1
-     * @param aData contains packaged event information for event consumer
-     * @return KErrNone or possible error code
-     */
-    virtual TInt RaiseSatEvent( const TDesC8& aData ) = 0;
-
-    /**
-     * Checks Cover UI support for SAT Mediator Event.
-     *
-     * @since S60 v3.1
-     * @return ETrue if cover Ui is supported
-     */        
-    virtual TBool CoverUiSupported() = 0;
-
-private:
-
-    /**
-     * Prohibit copy constructor if not deriving from CBase.
-     *
-     * @since S60 v3.1
-     * @param const reference to MSatMediatorEventProvider.
-     */
-    MSatMediatorEventProvider( const MSatMediatorEventProvider& );
-
-    /**
-     * Prohibit assigment operator if not deriving from CBase.
-     *
-     * @since S60 v3.1
-     * @param const reference to MSatMediatorEventProvider.
-     */
-    MSatMediatorEventProvider& 
-            operator=( const MSatMediatorEventProvider& );
-
-    };
-
-#endif // M_MSATMEDIATOREVENTPROVIDER_H
-