equal
deleted
inserted
replaced
|
1 // Copyright (c) 2004-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 // |
|
15 |
|
16 /** |
|
17 @file ramodfamily.h |
|
18 @internalTechnology |
|
19 */ |
|
20 |
|
21 |
|
22 #ifndef __ramodFAMILY_H__ |
|
23 #define __ramodFAMILY_H__ |
|
24 |
|
25 #include <ip6_hook.h> |
|
26 |
|
27 #include "ramod.h" |
|
28 |
|
29 |
|
30 |
|
31 class CramodProtocolFamily : public CProtocolFamilyBase |
|
32 { |
|
33 public: |
|
34 // explicit so we don't get default copy constructor |
|
35 explicit CramodProtocolFamily(); |
|
36 virtual ~CramodProtocolFamily(); |
|
37 |
|
38 TInt Install(); |
|
39 TInt Remove(); |
|
40 TUint ProtocolList(TServerProtocolDesc*& aProtocolList); |
|
41 CProtocolBase* NewProtocolL(TUint aSockType, TUint aProtocol); |
|
42 }; |
|
43 |
|
44 |
|
45 #endif // __ramodFAMILY_H__ |
|
46 |
|
47 |
|
48 |