wlan_bearer/wlannwif/inc/WlanCfproto.h
changeset 0 c40eb8fe8501
equal deleted inserted replaced
-1:000000000000 0:c40eb8fe8501
       
     1 /*
       
     2 * Copyright (c) 2002-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:  Defines WLAN CFP flow factory
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * %version: 5 %
       
    20 */
       
    21 
       
    22 #ifndef __WLANCFPROTO_H__
       
    23 #define __WLANCFPROTO_H__
       
    24 
       
    25 /** 
       
    26 *	Header file declaring the WLAN CFProtocol ECOM factories
       
    27 */
       
    28 
       
    29 #include <e32base.h>
       
    30 #include <e32std.h>
       
    31 #include <comms-infras/ss_subconnflow.h>
       
    32 #include <comms-infras/ss_protflow.h>
       
    33 
       
    34 /**
       
    35 Wlan SubConnFlow Implementation UID
       
    36 */
       
    37 const TInt KWlanFlowImplementationUid = 0x2001B2D3;
       
    38 
       
    39 
       
    40 class CWlanSubConnectionFlowFactory : public ESock::CSubConnectionFlowFactoryBase
       
    41 /**
       
    42 Wlan Flow Factory
       
    43 */
       
    44 	{
       
    45 public:
       
    46 	static CWlanSubConnectionFlowFactory* NewL(TAny* aConstructionParameters);
       
    47 	virtual ESock::CSubConnectionFlowBase* DoCreateFlowL(ESock::CProtocolIntfBase* aProtocolIntf, ESock::TFactoryQueryBase& aQuery);
       
    48 protected:
       
    49 	CWlanSubConnectionFlowFactory(TUid aFactoryId, ESock::CSubConnectionFlowFactoryContainer& aParentContainer);
       
    50 	};
       
    51 
       
    52 #endif // __WLANCFPROTO_H__