author | mikaruus |
Tue, 19 Oct 2010 13:16:20 +0300 | |
changeset 9 | 8486d82aef45 |
parent 5 | 8ccc39f9d787 |
permissions | -rw-r--r-- |
0 | 1 |
/* |
2 |
* Copyright (c) 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 the License "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: |
|
5
8ccc39f9d787
New release based on our 2010wk02 release
mikaruus <mika.a.ruuskanen@nokia.com>
parents:
0
diff
changeset
|
13 |
* |
8ccc39f9d787
New release based on our 2010wk02 release
mikaruus <mika.a.ruuskanen@nokia.com>
parents:
0
diff
changeset
|
14 |
* Description: |
0 | 15 |
* |
16 |
*/ |
|
17 |
||
18 |
||
19 |
||
20 |
#ifndef __ISILINKROUTERIF_H__ |
|
21 |
#define __ISILINKROUTERIF_H__ |
|
22 |
||
23 |
#include <e32def.h> // For TInt, TAny |
|
24 |
||
25 |
/* |
|
26 |
* Abstract interface for link to use router services. |
|
27 |
*/ |
|
28 |
class MISILinkRouterIf |
|
29 |
{ |
|
30 |
||
31 |
public: |
|
32 |
||
33 |
/* |
|
9 | 34 |
* Route ISI messages |
35 |
* @param aMsg, message to be routed |
|
36 |
* TODO: |
|
37 |
* @return Error value |
|
38 |
*/ |
|
39 |
virtual TInt RouteISIMessage( TDes8& aMsg, TBool aDynamicSenderCheckNeeded ) = 0; |
|
40 |
||
41 |
/* |
|
0 | 42 |
* Receive message from link. |
43 |
* Called without FM held. |
|
44 |
* @param aMsg, message to be received |
|
5
8ccc39f9d787
New release based on our 2010wk02 release
mikaruus <mika.a.ruuskanen@nokia.com>
parents:
0
diff
changeset
|
45 |
* @return Error value |
0 | 46 |
*/ |
9 | 47 |
virtual void ReceiveISIMessage( const TDesC8& aMessage, const TUint8 aTrxId ) = 0; |
48 |
||
49 |
/* |
|
50 |
* Called with FM held. |
|
51 |
* NOTE! restrictions when used with FM held. |
|
52 |
*/ |
|
53 |
virtual void StateChanged() = 0; |
|
54 |
||
0 | 55 |
}; |
56 |
||
57 |
||
58 |
||
59 |
#endif /* __ISILINKROUTERIF_H__ */ |