upnp/upnpstack_plat/upnp_common_api/inc/upnpnetworkeventaddresschange.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:  CUpnpNetworkEventAddressChange 
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef C_UPNPNETWORKEVENTADDRESSCHANGE_H
       
    19 #define C_UPNPNETWORKEVENTADDRESSCHANGE_H
       
    20 
       
    21 // Includes
       
    22 #include <upnpnetworkeventbase.h>
       
    23 #include <in_sock.h>
       
    24 
       
    25 /**
       
    26  * Class encapsulating AddressChange network event
       
    27  * @since S60 5.0
       
    28  **/
       
    29 class CUpnpNetworkEventAddressChange : public CUpnpNetworkEventBase 
       
    30     {
       
    31 public:
       
    32     
       
    33     /**
       
    34      * Constructor
       
    35      * @since S60 5.0 
       
    36      * @param address
       
    37      */
       
    38     CUpnpNetworkEventAddressChange( TInetAddr aAddress );
       
    39 
       
    40     /**
       
    41      * Getter for address
       
    42      * @since S60 5.0 
       
    43      * @return address
       
    44      */
       
    45     IMPORT_C TInetAddr Address();
       
    46     
       
    47 private:  // Data
       
    48 
       
    49     // address
       
    50     TInetAddr iInetAddr;
       
    51 
       
    52     };
       
    53 
       
    54 #endif // C_UPNPNETWORKEVENTADDRESSCHANGE_H
       
    55 
       
    56 // End of file
       
    57