upnp/upnpstack/controlpointbase/inc/upnpcpbhttpmessagecontroller.h
changeset 0 f5a58ecadc66
equal deleted inserted replaced
-1:000000000000 0:f5a58ecadc66
       
     1 /** @file
       
     2 * Copyright (c) 2007-2007 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: 
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MUPNPCPBHTTPMESSAGECONTROLLER_H_
       
    20 #define MUPNPCPBHTTPMESSAGECONTROLLER_H_
       
    21 
       
    22 #include "upnpdispatchercustomer.h"
       
    23 
       
    24 class CUpnpAction;
       
    25 class CUpnpServiceInfo;
       
    26 class CUpnpDevice;
       
    27 
       
    28 class MUpnpCpbHttpMessageController :
       
    29     public MUpnpDispatcherCustomer
       
    30     {
       
    31 
       
    32 public:
       
    33 
       
    34     virtual void SendL(CUpnpHttpMessage* aHttpMessage) = 0;
       
    35 
       
    36     virtual void SendActionL(CUpnpAction* aAction) = 0;
       
    37 
       
    38     virtual void SendSubscribeL(CUpnpServiceInfo* aService) = 0;
       
    39 
       
    40     virtual void SendUnsubscribeL(CUpnpServiceInfo* aService) = 0;
       
    41 
       
    42     virtual TInt GetServiceDescriptionL(CUpnpDevice* aDevice,
       
    43             const TDesC8& aServiceUrl) = 0;
       
    44 
       
    45     virtual TInt GetDeviceDescriptionL(CUpnpDevice* aDevice) = 0;
       
    46 
       
    47     virtual void SearchL( const TDesC8& aSearchString ) = 0;
       
    48 
       
    49     virtual void StopIgnoringEmbeddedL( CUpnpDevice* aRoot ) = 0;
       
    50 
       
    51     virtual void StopIgnoringUuidL( const TDesC8& aUuids ) = 0;
       
    52 
       
    53     /**
       
    54      * Stops ignoring all device tree
       
    55      * @since Series60 3.2
       
    56      * @param aRoot Root device
       
    57      */
       
    58     virtual void StopIgnoringL( CUpnpDevice* aDevice ) = 0;
       
    59 
       
    60     };
       
    61 
       
    62 #endif /*UNPNPCPBHTTPMESSAGECONTROLLER_H_*/