epoc32/include/gsmuetel.inl
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
parent 0 061f57f2323e
child 4 837f303aceeb
permissions -rw-r--r--
Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
     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 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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Constructor.
    15 // 
    16 //
    17 
    18 
    19 
    20 
    21 /**
    22  @file
    23  @publishedAll
    24  @released 
    25 */
    26 inline TGsmSms::TGsmSms()
    27 	{
    28 	}
    29 
    30 
    31 /**
    32  *  Gets a descriptor containing the PDU.
    33  *  
    34  *  @return Descriptor containing the PDU 
    35  */
    36 inline const TDesC8& TGsmSms::Pdu() const
    37 	{
    38 	return iPdu;
    39 	}
    40 
    41 
    42 /**
    43  *  Sets the PDU.
    44  *  
    45  *  @param aPdu Descriptor containing the PDU 
    46  */
    47 inline void TGsmSms::SetPdu(const TDesC8& aPdu)
    48 	{
    49 	iPdu = aPdu;
    50 	}
    51 
    52 
    53 /**
    54  *  Gets the Service Centre Address.
    55  *  
    56  *  @return Service Centre Address 
    57  */
    58 inline const TGsmSmsTelNumber& TGsmSms::Sca() const
    59 	{
    60 	return iSca;
    61 	}
    62 
    63 
    64 /**
    65  *  Sets the Service Centre Address.
    66  *  
    67  *  @param aSca Service Centre Address 
    68  */
    69 inline void TGsmSms::SetSca(const TGsmSmsTelNumber& aSca)
    70 	{
    71 	iSca = aSca;
    72 	}