upnp/upnpstack/serviceframework/inc/upnpsilentdeviceimplcontenthandler.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 CUpnpSilentDeviceImplContentHandler class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __UPNPSILENTDEVICEIMPLCONTENTHANDLER_H__
       
    21 #define __UPNPSILENTDEVICEIMPLCONTENTHANDLER_H__
       
    22 
       
    23 #include "upnpdevicecontenthandler.h"
       
    24 
       
    25 /**
       
    26 *  This class handles xml device descriptions
       
    27 *  It extends CUpnpDeviceContentHandler class, thus it is subsequent implementation of MContentHandler interface
       
    28 *  It is designed to be used by xml parser that generates events using callback methods   
       
    29 *
       
    30 *  @since Series60 2.6
       
    31 */
       
    32 
       
    33 
       
    34 class CUpnpSilentDeviceImplContentHandler: public CUpnpDeviceContentHandler
       
    35 {
       
    36 public:
       
    37     
       
    38     /**    
       
    39     * Two phased constructor   
       
    40     * @return a pointer to the created instance of CUpnpSilentDeviceImplContentHandler
       
    41     */
       
    42     static CUpnpSilentDeviceImplContentHandler* NewLC( );
       
    43     
       
    44     /**    
       
    45     * Creates instance of CUpnpDevice class   
       
    46     * @return a pointer to the created instance of CUpnpDevice
       
    47     */                
       
    48     virtual CUpnpDevice* CreateDeviceL();
       
    49     
       
    50     /**    
       
    51     * Destructor of CUpnpSilentDeviceImplContentHandler class      
       
    52     */  
       
    53     virtual ~CUpnpSilentDeviceImplContentHandler();
       
    54         
       
    55 private:
       
    56     
       
    57     /**    
       
    58     * Deafult C++ constructor
       
    59     */  
       
    60     CUpnpSilentDeviceImplContentHandler();        
       
    61         
       
    62 };
       
    63 
       
    64 
       
    65 #endif __UPNPSILENTDEVICEIMPLCONTENTHANDLER_H__