williamr@4: // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). williamr@4: // All rights reserved. williamr@4: // This component and the accompanying materials are made available williamr@4: // under the terms of "Eclipse Public License v1.0" williamr@4: // which accompanies this distribution, and is available williamr@4: // at the URL "http://www.eclipse.org/legal/epl-v10.html". williamr@4: // williamr@4: // Initial Contributors: williamr@4: // Nokia Corporation - initial contribution. williamr@4: // williamr@4: // Contributors: williamr@4: // williamr@4: // Description: williamr@4: // williamr@4: williamr@4: #ifndef LOGSMSPDUDATA_H williamr@4: #define LOGSMSPDUDATA_H williamr@4: williamr@4: #include williamr@4: williamr@4: class TLogSmsPduData williamr@4: /** williamr@4: The following should be used to store SMS PDU info in event data williamr@4: @publishedAll williamr@4: @released williamr@4: */ williamr@4: { williamr@4: public: williamr@4: TInt iType; // message type; williamr@4: TInt iTotal; // total number of parts williamr@4: TInt iSent; // total number of parts sent williamr@4: TInt iDelivered; // total number of parts delivered to destination williamr@4: TInt iFailed; // total number of parts failed to be delivered to destination williamr@4: TInt iReceived; // total number of parts received for DELIVERs or SUBMITs read from the phone/SIM williamr@4: }; williamr@4: williamr@4: #endif