vtengines/videoteleng/Inc/Base/MVtEngCRSettingObserver.h
changeset 18 d9b6a8729acd
parent 4 6dc066157ed4
child 23 c378a0498b84
child 27 dcbddbbaf8fd
--- a/vtengines/videoteleng/Inc/Base/MVtEngCRSettingObserver.h	Tue Jan 26 12:01:21 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,67 +0,0 @@
-/*
-* Copyright (c) 2004-2006 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:  Observer interface for indicating setting changes in Cent Rep
-*
-*/
-
-
-#ifndef MVTENGSETTINCRGOBSERVER_H
-#define MVTENGSETTINGCROBSERVER_H
-
-//  INCLUDES
-#include <e32std.h>
-
-// CLASS DECLARATION
-
-/**
-*  Observer interface for indicating setting changes
-*
-*  @lib videoteleng.lib
-*  @since Series 60 3.0
-*/
-class MVtEngCRSettingObserver
-    {
-    public:  // New functions
-
-        /**
-        * Callback to notify changed setting
-        * @param aUid changed Uid
-        * @param aId changed id
-        * @param aNewValue new value
-        */
-        virtual void HandleNotifyInt( const TUid aUid, const TUint32 aId, 
-            TInt aNewValue ) = 0;
-
-        /**
-        * Callback to notify changed setting
-        * @param aUid changed Uid
-        * @param aId changed id
-        * @param aNewValue new value
-        */
-        virtual void HandleNotifyReal( const TUid aUid, const TUint32 aId, 
-            TReal aNewValue ) = 0;
-
-        /**
-        * Callback to notify changed setting
-        * @param aUid changed Uid
-        * @param aId changed id
-        * @param aNewValue new value
-        */
-        virtual void HandleNotifyString( const TUid aUid, const TUint32 aId, 
-            const TDesC16& aNewValue ) = 0;
-    };
-
-#endif      // MVTENGCRSETTINGOBSERVER_H   
-
-// End of File