equal
deleted
inserted
replaced
|
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 @prototype |
|
27 @released |
|
28 */ |
|
29 |
|
30 #ifndef BCA2FACTORY_H |
|
31 #define BCA2FACTORY_H |
|
32 |
|
33 #include <networking/bca2.h> |
|
34 |
|
35 /** This namespace includes the BCA component names.*/ |
|
36 namespace BasebandChannelAdaptation2 |
|
37 { |
|
38 |
|
39 /** |
|
40 * The abstract interface responsible for BCA creation. |
|
41 |
|
42 * @publishedPartner |
|
43 * @prototype |
|
44 * @released |
|
45 */ |
|
46 class MBca2Factory |
|
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 MBca2* NewBcaL()=0; |
|
58 }; |
|
59 } |
|
60 #endif // BCA2FACTORY_H |