tcpiputils/dhcp/te_dhcp/DummyDNSUpdateSrc/DummyDNSUpdate.h
changeset 0 af10295192d8
equal deleted inserted replaced
-1:000000000000 0:af10295192d8
       
     1 /**
       
     2 * Copyright (c) 2003-2009 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 * The Dummy DNS Update plug-in interface
       
    16 * 
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 
       
    22 /**
       
    23  @file DummyDNSUpdate.h
       
    24 */
       
    25 
       
    26 #ifndef __DUMMYDNSUPDATE_H__
       
    27 #define __DUMMYDNSUPDATE_H__
       
    28 
       
    29 #include <e32base.h>
       
    30 #include "DNSUpdateIf.h"
       
    31 
       
    32 class CDummyDnsUpdate : public CDnsUpdateIf
       
    33 {
       
    34 
       
    35 public:
       
    36    // Wraps ECom object instantitation
       
    37    static CDummyDnsUpdate* NewL();
       
    38    // Wraps ECom object destruction 
       
    39    virtual ~CDummyDnsUpdate();
       
    40 
       
    41 
       
    42    virtual void Update( TDesC& aInterfaceName, TDesC8* aHostName, TDesC8* aDomainName );
       
    43 
       
    44 private:
       
    45    void ConstructL();
       
    46 };
       
    47 
       
    48 #endif