diff -r 000000000000 -r 56b72877c1cb hotspotfw/hspluginforagent/inc/wlanagthotspotimpl.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hotspotfw/hspluginforagent/inc/wlanagthotspotimpl.h Thu Dec 17 09:20:28 2009 +0200 @@ -0,0 +1,85 @@ +/* +* Copyright (c) 2002-2006 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: Agent-hotspot interaction plugin +* +*/ + + + +#ifndef WLANAGTHOTSPOTIMPL_H +#define WLANAGTHOTSPOTIMPL_H + +#include +#include +#include "hssinterface.h" + +/** +* Plugin used by WLAN Agent in order to interact with Hot Spot frame work which is middleware component +* +* @lib wlanagthotspotimpl.dll +* @since Series 60 3.0 +*/ +class CWlanAgtHotSpotImpl : + public CWlanAgtHotSpotClient + { + public: // Constructors and destructor + + /** + * Two-phased constructor. + * @param aCallback specifies the callback interface + */ + static CWlanAgtHotSpotImpl* NewL( ); + + /** + * Destructor. + */ + virtual ~CWlanAgtHotSpotImpl(); + + public: // Functions from base classes + + /* From CWlanAgtHotSpotClient */ + + void HotSpotStart( const TUint aIapId, TRequestStatus& aStatus ); + + void HotSpotStartAgain( const TUint aIapId, TRequestStatus& aStatus ); + + void HotSpotCloseConnection( const TUint aIapId, TRequestStatus& aStatus ); + + void HotSpotCancel( const TUint aIapId ); + + private: + + /** + * C++ default constructor. + */ + CWlanAgtHotSpotImpl( ); + + /** + * By default Symbian 2nd phase constructor is private. + */ + void ConstructL(); + + /** + * Requests a notification from System Agent. + */ + void IssueRequest(); + + + private: // Data + + RHssInterface iHSServer; + + }; + +#endif // WLANAGTHOTSPOTIMPL_H