24
|
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 "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".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
//
|
|
15 |
|
|
16 |
/**
|
|
17 |
@file
|
|
18 |
@internalComponent
|
|
19 |
*/
|
|
20 |
|
|
21 |
|
|
22 |
#ifndef __SMS_PDU_DB_ITEMS_INL__
|
|
23 |
#define __SMS_PDU_DB_ITEMS_INL__
|
|
24 |
|
|
25 |
inline CSmsPduDbBase::CSmsPduDbBase()
|
|
26 |
: iId(KErrNone), iDescription(KNullDesC8), iSmsMessage(NULL), iSmsMessageError(KErrNone)
|
|
27 |
{
|
|
28 |
}
|
|
29 |
|
|
30 |
inline CSmsPduDbPdu::CSmsPduDbPdu(CSmsPDU::TSmsPDUType aType)
|
|
31 |
: CSmsPduDbBase(), iType(aType), iDecodeError(KErrNone)
|
|
32 |
{
|
|
33 |
}
|
|
34 |
|
|
35 |
inline CSmsPduDbConcatSegment::CSmsPduDbConcatSegment(CSmsPDU::TSmsPDUType aType)
|
|
36 |
: CSmsPduDbPdu(aType), iSegment(KErrNotFound)
|
|
37 |
{
|
|
38 |
}
|
|
39 |
|
|
40 |
inline CSmsPduDbConcat::CSmsPduDbConcat()
|
|
41 |
: CSmsPduDbBase()
|
|
42 |
{
|
|
43 |
}
|
|
44 |
|
|
45 |
inline CSmsPduDbMessage::CSmsPduDbMessage(CSmsPDU::TSmsPDUType aType)
|
|
46 |
: CSmsPduDbPdu(aType), iPdus(2)
|
|
47 |
{
|
|
48 |
}
|
|
49 |
|
|
50 |
#endif
|