|
1 // Copyright (c) 2007-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 // Internal implementation of the SUPL Push API |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @file |
|
20 @internalComponent |
|
21 @deprecated |
|
22 */ |
|
23 |
|
24 #ifndef SUPL_PUSH_RECEIVER_IMPL_H |
|
25 #define SUPL_PUSH_RECEIVER_IMPL_H |
|
26 |
|
27 |
|
28 |
|
29 #include <e32std.h> |
|
30 #include <e32property.h> |
|
31 |
|
32 #include <lbs/lbssuplpushreceiver.h> |
|
33 #include <lbs/lbssuplpushcommon.h> |
|
34 |
|
35 |
|
36 class CLbsSuplPushRecChannel; |
|
37 |
|
38 /** |
|
39 The class provides an internal implementation of the functionality exposed |
|
40 by the CLbsSuplPushRec interface. |
|
41 |
|
42 @see CLbsSuplPushRec |
|
43 @see MLbsSuplPushRecObserver |
|
44 |
|
45 @internalComponent |
|
46 @deprecated |
|
47 */ |
|
48 NONSHARABLE_CLASS(CLbsSuplPushRecImpl) : public CBase |
|
49 { |
|
50 public: |
|
51 static CLbsSuplPushRecImpl* NewL(MLbsSuplPushRecObserver& aObserver); |
|
52 virtual ~CLbsSuplPushRecImpl(); |
|
53 |
|
54 public: |
|
55 TInt SuplInitComplete(TLbsSuplPushChannel aChannel, TLbsSuplPushRequestId aReqId, TInt aError, TInt aReserved); |
|
56 |
|
57 |
|
58 private: |
|
59 void ConstructL(MLbsSuplPushRecObserver& aObserver); |
|
60 |
|
61 private: |
|
62 /* The SMS channel listening for SMS messages*/ |
|
63 CLbsSuplPushRecChannel* iSmsChannel; |
|
64 |
|
65 /* The WAP Push channel listening for WAP Push messages*/ |
|
66 CLbsSuplPushRecChannel* iWapPushChannel; |
|
67 |
|
68 }; |
|
69 |
|
70 #endif //SUPL_PUSH_RECEIVER_IMPL_H |