1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 @file MRxDataObserver.h
18 @warning : This file contains Rose Model ID comments - please do not delete
21 #ifndef __MRXDATAOBSERVER_H__
22 #define __MRXDATAOBSERVER_H__
27 // Forward declarations
31 //##ModelId=3A914E570296
34 An interface to be implemented by classes that wish to receive status information
35 from an implementation of the CRxData class.
41 /** @fn void SetStatusL(CRxData& aRxData, TInt aStatus)
42 Intended Usage: Receive a status message from the object that processes received
43 data in a protocol handler.
44 @param aRxData The object which is processing the data.
45 @param aStatus The status (or error) code.
47 //##ModelId=3B1E6B5800E5
48 virtual void SetStatusL(CRxData& aRxData, TInt aStatus) =0;
53 Intended Usage: Reserve a slot in the v-table to preserve future BC
55 //##ModelId=3C4C37CE035D
56 inline virtual void MRDO_Reserved1();
60 Intended Usage: Reserve a slot in the v-table to preserve future BC
62 //##ModelId=3C4C37CE0349
63 inline virtual void MRDO_Reserved2();
66 inline void MRxDataObserver::MRDO_Reserved1()
70 inline void MRxDataObserver::MRDO_Reserved2()
73 #endif // __MRXDATAOBSERVER_H__