equal
deleted
inserted
replaced
|
1 /** |
|
2 * Copyright (c) 2003-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 * Inline functions for base classes in states and state machines. |
|
16 * |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 |
|
22 /** |
|
23 @file CAGENTSMBASE.inl |
|
24 @publishedPartner |
|
25 @deprecated since v9.5. Use MCPRs/CPRs/SCPRs instead of agents. |
|
26 */ |
|
27 |
|
28 |
|
29 #if !defined(__CAGENTSMBASE_INL__) |
|
30 #define __CAGENTSMBASE_INL__ |
|
31 |
|
32 inline TBool CAgentSMBase::IsReconnect() const |
|
33 {return iIsReconnect;} |
|
34 |
|
35 inline TBool CAgentSMBase::CallBack() const |
|
36 {return iCallBack;} |
|
37 |
|
38 #endif |
|
39 |