|
1 /* |
|
2 * Copyright (c) 2006 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: Base class for hold state machine state |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INCLUDE FILES |
|
20 #include "svpholdstatebase.h" |
|
21 #include "svpholdcontext.h" |
|
22 |
|
23 // ======== MEMBER FUNCTIONS ======== |
|
24 |
|
25 // --------------------------------------------------------------------------- |
|
26 // CSVPHoldStateBase::CSVPHoldStateBase |
|
27 // --------------------------------------------------------------------------- |
|
28 CSVPHoldStateBase::CSVPHoldStateBase() |
|
29 { |
|
30 } |
|
31 |
|
32 // --------------------------------------------------------------------------- |
|
33 // CSVPHoldStateBase::~CSVPHoldStateBase |
|
34 // ----------------------------------------------------------------------------- |
|
35 CSVPHoldStateBase::~CSVPHoldStateBase() |
|
36 { |
|
37 } |
|
38 |
|
39 // --------------------------------------------------------------------------- |
|
40 // CSVPHoldStateBase::ApplyL |
|
41 // --------------------------------------------------------------------------- |
|
42 // |
|
43 void CSVPHoldStateBase::ApplyL( CSVPHoldContext& aContext ) |
|
44 { |
|
45 DoApplyL( aContext ); |
|
46 } |
|
47 |
|
48 // --------------------------------------------------------------------------- |
|
49 // CSVPHoldStateBase::Enter |
|
50 // --------------------------------------------------------------------------- |
|
51 // |
|
52 void CSVPHoldStateBase::Enter( CSVPHoldContext& aContext ) |
|
53 { |
|
54 DoEnter( aContext ); |
|
55 } |
|
56 |
|
57 // --------------------------------------------------------------------------- |
|
58 // CSVPHoldStateBase::IsOutEstablishingStateActive |
|
59 // --------------------------------------------------------------------------- |
|
60 // |
|
61 TBool CSVPHoldStateBase::IsOutEstablishingStateActive() |
|
62 { |
|
63 return EFalse; |
|
64 } |