equal
deleted
inserted
replaced
|
1 // Copyright (c) 2000-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 // ObexUtils |
|
15 // Obex Utility Class |
|
16 // |
|
17 // |
|
18 |
|
19 #ifndef __OBEXUTILS_H__ |
|
20 #define __OBEXUTILS_H__ |
|
21 |
|
22 #include <e32base.h> |
|
23 #include <obex.h> |
|
24 |
|
25 |
|
26 |
|
27 // Messaging Suite |
|
28 #include <msvapi.h> |
|
29 |
|
30 #include <listenercontainer.h> |
|
31 |
|
32 class CObexUtils : public CBase |
|
33 /** |
|
34 Class CObexUtils |
|
35 The purpose of this class is multifold: |
|
36 |
|
37 Handles storage / deletion of the received object in the messaging inbox. |
|
38 |
|
39 @internalTechnology |
|
40 @removed |
|
41 */ |
|
42 { |
|
43 public: |
|
44 IMPORT_C static void DummySaveObjToInboxL(CMsvSession& , CBaseContainer& , TUid , TMsvId& , TDesC&); |
|
45 |
|
46 IMPORT_C static void DummyRemoveFromInboxL(CMsvSession& , TMsvId); |
|
47 |
|
48 IMPORT_C static void DummyFinaliseObexMessageL(CMsvSession& , TMsvId); |
|
49 |
|
50 |
|
51 |
|
52 |
|
53 |
|
54 }; |
|
55 |
|
56 |
|
57 #endif // __OBEXUTILS__ |