24
|
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 |
* Baseband Channel Adaptor(BCA) Factory APIs.
|
|
16 |
* This file contains all the APIs required to implement a MBcaFactory for Symbian OS.
|
|
17 |
*
|
|
18 |
*
|
|
19 |
*/
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
/**
|
|
24 |
@file
|
|
25 |
@publishedPartner
|
|
26 |
@released
|
|
27 |
*/
|
|
28 |
|
|
29 |
#ifndef BCAFACTORY_H
|
|
30 |
#define BCAFACTORY_H
|
|
31 |
|
|
32 |
#include <e32std.h>
|
|
33 |
#include <networking/bca.h>
|
|
34 |
|
|
35 |
/** This namespace includes the BCA component names.*/
|
|
36 |
namespace BasebandChannelAdaptation
|
|
37 |
{
|
|
38 |
|
|
39 |
/**
|
|
40 |
* The abstract interface responsible for BCA creation.
|
|
41 |
|
|
42 |
* @publishedPartner
|
|
43 |
* @released
|
|
44 |
*/
|
|
45 |
class MBcaFactory
|
|
46 |
|
|
47 |
{
|
|
48 |
public:
|
|
49 |
/** deletes the allocated data in BcaFactory*/
|
|
50 |
virtual void Release()=0;
|
|
51 |
|
|
52 |
/**
|
|
53 |
* This method creates a BCA instance and returns a pointer to it.
|
|
54 |
|
|
55 |
* @return a pointer to BCA instance.
|
|
56 |
*/
|
|
57 |
virtual MBca* NewBcaL()=0;
|
|
58 |
|
|
59 |
};
|
|
60 |
}
|
|
61 |
#endif // BCAFACTORY_H
|