voipplugins/dhcppositionprovider/inc/dhcpconnectionprogressnotifier.h
branchRCL_3
changeset 21 f742655b05bf
parent 20 65a3ef1d5bd0
child 22 d38647835c2e
--- a/voipplugins/dhcppositionprovider/inc/dhcpconnectionprogressnotifier.h	Thu Aug 19 09:45:22 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,103 +0,0 @@
-/*
-* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:  Header file for connection progress notifier
-*
-*/
-
-
-#ifndef DHCPCONNECTIONPROGRESSNOTIFIER_H_
-#define DHCPCONNECTIONPROGRESSNOTIFIER_H_
-
-#include <es_sock.h>
-#include "dhcpconnectionstateobserver.h"
-
-/**
-*  This class keep track connection progress.
-*
-*  @lib dhcppositionprovider.dll
-*  @since 3.2
-*/
-class CDhcpConnectionProgressNotifier : public CActive
-    {
-    public:
-
-        /**
-         * Two-phased constructor
-         *
-         * @param aConnection   Reference to RConnection object, which hold information about
-         *                      ongoing connection to the wlan access point
-         * @since 3.2
-         */
-        static CDhcpConnectionProgressNotifier* NewL (RConnection& aConnection,
-                MDhcpConnectionStateObserver* aObserver);
-
-        /*
-        * Destructor
-        *
-        * @since S60 3.2
-        */
-        virtual ~CDhcpConnectionProgressNotifier();
-
-    public:
-
-        /*
-         * Get current connection status
-         *
-         * @since S60 3.2
-         */
-        TInt    GetState();
-
-    protected:
-
-         /**
-         * Cancellation of an outstanding request.
-         *
-         * @since S60 3.2
-         */
-         void DoCancel ();
-
-         /**
-         * Handles an active object's request completion event.
-         *
-         * @since S60 3.2
-         */
-         void RunL ();
-
-    private:
-
-        /**
-         * C++ constructor
-         *
-         * @since S60 3.2
-         */
-        CDhcpConnectionProgressNotifier (RConnection& aConnection,
-                MDhcpConnectionStateObserver* aObserver);
-
-        /**
-         * Contructor which can leave
-         *
-         * @since S60 3.2
-         */
-         void ConstructL ();
-
-    private:
-        // Member variables
-        RConnection& iConnection;
-        MDhcpConnectionStateObserver* iObserver;
-        TNifProgressBuf iProgress;
-        TInt iState;
-
-    };
-
-#endif  // DHCPCONNECTIONPROGRESSNOTIFIER_H_