equal
deleted
inserted
replaced
|
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 // Class 0 SMS Message |
|
15 // |
|
16 // |
|
17 |
|
18 #ifndef __CLASS0SMS_H_ |
|
19 #define __CLASS0SMS_H_ |
|
20 |
|
21 #include <e32base.h> |
|
22 #include <csmsclass0base.h> |
|
23 |
|
24 class CClass0Sms : public CSmsClass0Base |
|
25 { |
|
26 public: |
|
27 void DisplayMessageHandler(TDesC8& aSmsMessage, TBool aComplete); |
|
28 static CClass0Sms* NewL(); |
|
29 ~CClass0Sms(); |
|
30 |
|
31 private: |
|
32 CClass0Sms(); |
|
33 void ConstructL(); |
|
34 |
|
35 private: |
|
36 RNotifier iNotifier; |
|
37 }; |
|
38 |
|
39 #endif |
|
40 |