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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This file contains the header file of the etel functions that have to be adapted later
24 #ifndef __GSMUETEL_H__
25 #define __GSMUETEL_H__
28 #include <gsmunmspacemobmsg.h>
33 * Basic SMS class that contains some of the Etel mulit-mode SMS types.
41 inline const TDesC8& Pdu() const;
42 inline void SetPdu(const TDesC8& aPdu);
43 inline const TGsmSmsTelNumber& Sca() const;
44 inline void SetSca(const TGsmSmsTelNumber& aSca);
47 NMobileSmsMessaging::TMobileSmsGsmTpdu iPdu; ///< Storage for the PDU
48 TGsmSmsTelNumber iSca; ///< Storage for the SCA
51 /** Responsibility for submit/delivery reports. */
52 enum TSmsReportResponsibility
54 /** ME has report resposibility. */
56 /** Client has report resposibility. */
59 struct TSmsReportSetting
61 * Flags for report responsibility.
65 /** Responsibility for delivery reports. */
66 TSmsReportResponsibility iDeliverReports;
67 /** Responsibility for submit reports. */
68 TSmsReportResponsibility iSubmitReports;
71 #include <gsmuetel.inl>
73 #endif // !defined __GSMUETEL_H__