equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: UpnpCommand helper API main module |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef UPNP_COMMAND_MAIN_H |
|
20 #define UPNP_COMMAND_MAIN_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32base.h> |
|
24 #include "upnpcommand.h" |
|
25 |
|
26 // FORWARD DECLARATIONS |
|
27 class MUpnpCommandCallback; |
|
28 |
|
29 // CONSTANTS |
|
30 |
|
31 // CLASS DEFINITION |
|
32 |
|
33 /** |
|
34 * Suport class for Upnp command helper API |
|
35 * implementation |
|
36 */ |
|
37 class UpnpCommandMain |
|
38 { |
|
39 public: |
|
40 /** |
|
41 * Loads upnp command by given ID |
|
42 */ |
|
43 static CUpnpCommand* LoadL( |
|
44 UpnpCommand::TUpnpCommandId aCommandId, |
|
45 MUpnpCommandCallback* aCallback = 0 ); |
|
46 |
|
47 }; |
|
48 |
|
49 // These methods are here to preserve binary compatibility of |
|
50 // upnpcommand.dll by keeping the DLL export table ordinals |
|
51 // unchanged. |
|
52 |
|
53 IMPORT_C void UpnpCommandReserved1(); |
|
54 IMPORT_C void UpnpCommandReserved2(); |
|
55 |
|
56 #endif // UPNP_COMMAND_MAIN_H |
|
57 |
|
58 // End of File |