1 // Copyright (c) 1999-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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Contains inline method implementations from classes defined in gsmupdu.h
26 Once a PDU has been constructed it cannot change its type as the SMS
27 elements present differ. Hence there is no function to set the type.
32 inline CSmsPDU::TSmsPDUType CSmsPDU::Type() const
39 * Gets the Reply Path Error flag.
41 * @return True for Reply Path Error
43 inline TBool CSmsDeliverReport::IsRPError() const
50 * Sets the Reply Path Error flag.
52 * @param aIsRPError Set to True for Reply Path Error
54 inline void CSmsDeliverReport::SetIsRPError(TBool aIsRPError)
56 iIsRPError=(TUint8) aIsRPError;
61 * Gets the Reply Path Error flag.
63 * @return True for Reply Path Error
65 inline TBool CSmsSubmitReport::IsRPError() const
72 * Sets the Reply Path Error flag.
74 * @param aIsRPError Set to True for Reply Path Error
76 inline void CSmsSubmitReport::SetIsRPError(TBool aIsRPError)
78 iIsRPError=(TUint8) aIsRPError;
83 * Gets Paramater Indicator.
85 * @return True if Paramater Indicator is present
87 inline TBool CSmsStatusReport::ParameterIndicatorPresent() const
89 return iParameterIndicatorPresent;
94 * Sets Paramater Indicator.
96 * @param aPresent Set to True to set Parameter Indicator Present
98 inline void CSmsStatusReport::SetParameterIndicatorPresent(TBool aPresent)
100 iParameterIndicatorPresent=(TUint8) aPresent;