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 "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.
14 // Contains inline method implementations from classes defined in gsmupdu.h
23 Once a PDU has been constructed it cannot change its type as the SMS
24 elements present differ. Hence there is no function to set the type.
29 inline CSmsPDU::TSmsPDUType CSmsPDU::Type() const
36 * Gets the Reply Path Error flag.
38 * @return True for Reply Path Error
40 inline TBool CSmsDeliverReport::IsRPError() const
47 * Sets the Reply Path Error flag.
49 * @param aIsRPError Set to True for Reply Path Error
51 inline void CSmsDeliverReport::SetIsRPError(TBool aIsRPError)
53 iIsRPError=(TUint8) aIsRPError;
58 * Gets the Reply Path Error flag.
60 * @return True for Reply Path Error
62 inline TBool CSmsSubmitReport::IsRPError() const
69 * Sets the Reply Path Error flag.
71 * @param aIsRPError Set to True for Reply Path Error
73 inline void CSmsSubmitReport::SetIsRPError(TBool aIsRPError)
75 iIsRPError=(TUint8) aIsRPError;
80 * Gets Paramater Indicator.
82 * @return True if Paramater Indicator is present
84 inline TBool CSmsStatusReport::ParameterIndicatorPresent() const
86 return iParameterIndicatorPresent;
91 * Sets Paramater Indicator.
93 * @param aPresent Set to True to set Parameter Indicator Present
95 inline void CSmsStatusReport::SetParameterIndicatorPresent(TBool aPresent)
97 iParameterIndicatorPresent=(TUint8) aPresent;