upnp/upnpstack_plat/upnp_common_api/inc/upnpdevicedescription.h
changeset 0 f5a58ecadc66
equal deleted inserted replaced
-1:000000000000 0:f5a58ecadc66
       
     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:  Declares the CUpnpDeviceDescription class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_CUPNPDEVICEDESCRIPTION_H
       
    20 #define C_CUPNPDEVICEDESCRIPTION_H
       
    21 
       
    22 // INCLUDES
       
    23 
       
    24 
       
    25 #include "upnpdevice.h"
       
    26 
       
    27 /**
       
    28  *  Device
       
    29  *
       
    30  *  Prior using the CUpnpDeviceDescription class, client application has to create the network
       
    31  *  connection. If connection is not up and running, the
       
    32  *  CUpnpDispatcherEngine class construction will fail.
       
    33  *  See UPnP Interface Design document for instuctions.
       
    34  *
       
    35  *  @since Series60 2.6
       
    36  */
       
    37 class CUpnpDeviceDescription : public CUpnpDevice
       
    38     {
       
    39 
       
    40 public:
       
    41     /**
       
    42      * Destructor.
       
    43      */
       
    44     IMPORT_C virtual ~CUpnpDeviceDescription();
       
    45 
       
    46 public: // New functions
       
    47 
       
    48     IMPORT_C void SetDescriptionUrlL( const TDesC8& aDescriptionUrl);
       
    49     
       
    50     /**
       
    51      * C++ default constructor.
       
    52      */
       
    53     IMPORT_C CUpnpDeviceDescription();
       
    54 
       
    55     };
       
    56 
       
    57 #endif  // C_CUPNPDEVICEDESCRIPTION_H
       
    58