equal
deleted
inserted
replaced
|
1 /** @file |
|
2 * Copyright (c) 2005-2006 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: UPnP Error - this is internal class that converts |
|
15 * TInt to TUpnpErrorCode it helps to avoid excessive casting |
|
16 * |
|
17 */ |
|
18 |
|
19 #ifndef M_UPNPCDSSENDER |
|
20 #define M_UPNPCDSSENDER |
|
21 |
|
22 #include "upnperrors.h" |
|
23 |
|
24 class CUpnpAction; |
|
25 class CUpnpHttpMessage; |
|
26 |
|
27 |
|
28 // Sender interface |
|
29 class MUpnpCdsSender |
|
30 { |
|
31 public: |
|
32 virtual void SendL(CUpnpAction* aAction, TUpnpErrorCode aError)=0; |
|
33 virtual void SendL( CUpnpHttpMessage* aMessage )=0; |
|
34 }; |
|
35 |
|
36 #endif |