basebandadaptationplugins/basebandchanneladaptorforc32/inc/C32BcaFactory.h
changeset 0 3553901f7fa8
equal deleted inserted replaced
-1:000000000000 0:3553901f7fa8
       
     1 /**
       
     2 * Copyright (c) 2004-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 * C32 Baseband Channel Adaptor(BCA) Factory APIs.
       
    16 * This file contains all the APIs required to implement a CC32BcaFactory for Symbian OS.
       
    17 * 
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 
       
    23 /**
       
    24  @file 
       
    25  @internalComponent
       
    26 */
       
    27  
       
    28 #ifndef C32BCAFACTORY_H
       
    29 #define C32BCAFACTORY_H
       
    30 
       
    31 #include <networking/bcafactory.h>
       
    32 #include <e32base.h>
       
    33 
       
    34 /** This namespace includes the BCA component names.*/
       
    35 namespace BasebandChannelAdaptation
       
    36 {
       
    37 	namespace C32Bca
       
    38 	{
       
    39 	
       
    40 	/**
       
    41 	 * The interface to the factory responsible for C32BCA creation. */
       
    42 	NONSHARABLE_CLASS(CC32BcaFactory): public CBase, public MBcaFactory
       
    43 		{
       
    44 	public:
       
    45 		virtual void Release();
       
    46 		virtual MBca* NewBcaL();
       
    47 		};
       
    48 	}
       
    49 }
       
    50 #endif //C32BCAFACTORY_H