upnp/upnpstack/upnputils/inc/upnpmessageobserver.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 virtual MUpnpMessageObserver callback class
       
    15 *                and the implemented active object class CUpnpNotifyTimer
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef C_MUPNPMESSAGEOBSERVER_H
       
    21 #define C_MUPNPMESSAGEOBSERVER_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 // CONSTANTS
       
    27 
       
    28 // CLASS DECLARATION
       
    29 class CUpnpHttpMessage;
       
    30 
       
    31 /**
       
    32 * brief An interface from SsdpMessage to its customer (service)
       
    33 *
       
    34 *  @since Series60 2.0
       
    35 */
       
    36 class MUpnpMessageObserver
       
    37     {
       
    38     public:
       
    39 
       
    40         /**
       
    41         * MessageExpiredL
       
    42         * @since Series60 2.0
       
    43         * @param aMessage A pointer to expired message.
       
    44         * @return None
       
    45         */
       
    46 	    virtual void MessageExpiredL( CUpnpHttpMessage* aMessage ) = 0;
       
    47     };
       
    48 
       
    49 #endif // C_MUPNPMESSAGEOBSERVER_H
       
    50 
       
    51 // End Of File