networkprotocolmodules/networkprotocolmodule/LbsProtocolModule/inc/cmtlrstatehandler.h
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 // This file defines the class for the MT-LR protocol state handler |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @file |
|
20 @internalComponent |
|
21 @test |
|
22 */ |
|
23 |
|
24 #ifndef __CMTLRSTATEHANDLER_H__ |
|
25 #define __CMTLRSTATEHANDLER_H__ |
|
26 |
|
27 #include <e32base.h> |
|
28 #include "cstatehandlerbase.h" |
|
29 |
|
30 class CStateMachineBase; |
|
31 |
|
32 /** Class that defines the MT-LR protocol state handler |
|
33 This class implements pure virtual methods defined by CStateHandlerBase |
|
34 @see CStateHandlerBase |
|
35 */ |
|
36 NONSHARABLE_CLASS(CMtLrStateHandler) : public CStateHandlerBase |
|
37 { |
|
38 public: |
|
39 |
|
40 static CMtLrStateHandler* NewL(CStateMachineBase& aMachine); |
|
41 virtual ~CMtLrStateHandler(); |
|
42 |
|
43 // CStateHandlerBase methods |
|
44 |
|
45 void Initialise(); |
|
46 void EntryActions(); |
|
47 void ExitActions(); |
|
48 |
|
49 |
|
50 protected: |
|
51 |
|
52 CMtLrStateHandler(CStateMachineBase& aMachine); |
|
53 |
|
54 private: |
|
55 |
|
56 void ConstructL(); |
|
57 |
|
58 }; |
|
59 |
|
60 #endif // __CMTLRSTATEHANDLER_H__ |
|
61 |