equal
deleted
inserted
replaced
|
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // Defines the class MRawIPObserverBase. All internal NIF observer mixins |
|
15 // derive from this class. |
|
16 // |
|
17 // |
|
18 |
|
19 /** |
|
20 @file |
|
21 */ |
|
22 |
|
23 #ifndef MRAWIPOBSERVERBASE_H__ |
|
24 #define MRAWIPOBSERVERBASE_H__ |
|
25 |
|
26 class MNifIfNotify; |
|
27 class CBcaIoController; |
|
28 class CBinderBase; |
|
29 |
|
30 class MRawIPObserverBase |
|
31 { |
|
32 public: |
|
33 enum TInitialisationState |
|
34 { |
|
35 EStart, |
|
36 EBcaController, |
|
37 EInitialised |
|
38 }; |
|
39 |
|
40 public: |
|
41 virtual void InitialiseL(TInitialisationState aState, TInt aError)=0; |
|
42 virtual void ShutDown(TInitialisationState aState, TInt aError=KErrNone)=0; |
|
43 |
|
44 public: |
|
45 virtual CBinderBase* GetBinder()=0; |
|
46 }; |
|
47 |
|
48 #endif // MRAWIPOBSERVERBASE_H__ |