|
1 // Copyright (c) 2002-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 |
|
14 // INCLUDE FILES |
|
15 #include "SatMessaging.h" |
|
16 #include "cmmmessagerouter.h" |
|
17 |
|
18 // ======== MEMBER FUNCTIONS ======== |
|
19 |
|
20 CTsySatMessaging::CTsySatMessaging( CMmMessageRouter* aRouter ) |
|
21 : iMessageRouter( aRouter ) |
|
22 { |
|
23 } |
|
24 |
|
25 void CTsySatMessaging::ConstructL() |
|
26 { |
|
27 } |
|
28 |
|
29 EXPORT_C CTsySatMessaging* CTsySatMessaging::NewL( CMmMessageRouter* aRouter ) |
|
30 { |
|
31 CTsySatMessaging* self = new ( ELeave ) CTsySatMessaging( aRouter ); |
|
32 CleanupStack::PushL( self ); |
|
33 self->ConstructL(); |
|
34 CleanupStack::Pop(); |
|
35 return self; |
|
36 } |
|
37 |
|
38 CTsySatMessaging::~CTsySatMessaging() |
|
39 { |
|
40 } |
|
41 |
|
42 // --------------------------------------------------------------------------- |
|
43 // CTsySatMessaging::CompleteSendSmsMessage |
|
44 // SMS message send complete |
|
45 // (other items were commented in a header). |
|
46 // --------------------------------------------------------------------------- |
|
47 // |
|
48 TInt CTsySatMessaging::CompleteSendSmsMessage( TInt /*aError*/ ) |
|
49 { |
|
50 return KErrNone; |
|
51 } |
|
52 |
|
53 // --------------------------------------------------------------------------- |
|
54 // CTsySatMessaging::IsMoSmControlBySimActivated |
|
55 // |
|
56 // (other items were commented in a header). |
|
57 // --------------------------------------------------------------------------- |
|
58 // |
|
59 TBool CTsySatMessaging::IsMoSmControlBySimActivated() |
|
60 { |
|
61 return EFalse; |
|
62 } |
|
63 |
|
64 // --------------------------------------------------------------------------- |
|
65 // CTsySatMessaging::ExtFunc |
|
66 // |
|
67 // (other items were commented in a header). |
|
68 // --------------------------------------------------------------------------- |
|
69 // |
|
70 TInt CTsySatMessaging::ExtFunc( const TTsyReqHandle /*aTsyReqHandle*/, |
|
71 const TInt /*aIpc*/, const TDataPackage& /*aPackage*/ ) |
|
72 { |
|
73 // handling of SIM ATK TSY related request |
|
74 return KErrNotSupported; |
|
75 } |
|
76 |
|
77 // End of File |