equal
deleted
inserted
replaced
|
1 // Copyright (c) 2007-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 // PDP MCPR States |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @file |
|
20 @internalComponent |
|
21 */ |
|
22 #ifndef PDPMCPRSTATES_H |
|
23 #define PDPMCPRSTATES_H |
|
24 |
|
25 #include <comms-infras/coremcprstates.h> |
|
26 |
|
27 class CPdpMetaConnectionProvider; |
|
28 |
|
29 class TPdpContentionMessages |
|
30 { |
|
31 public: |
|
32 enum { ERealmId = 0x102822EF }; |
|
33 |
|
34 private: |
|
35 enum |
|
36 { |
|
37 EPDPContentionResultMessage = Messages::KNullMessageId + 100, |
|
38 }; |
|
39 public: |
|
40 typedef Messages::TMessageSigNodeIdNumber<EPDPContentionResultMessage, TPdpContentionMessages::ERealmId> TPdpContentionResultMessage; |
|
41 }; |
|
42 |
|
43 namespace PdpMCprStates |
|
44 { |
|
45 typedef MeshMachine::TNodeContext<CPdpMetaConnectionProvider, MCprStates::TContext> TContext; |
|
46 |
|
47 DECLARE_SMELEMENT_HEADER( TProcessErrorRecoveryReq, MeshMachine::TStateTransition<TContext>, NetStateMachine::MStateTransition, TContext ) |
|
48 virtual void DoL(); |
|
49 DECLARE_SMELEMENT_FOOTER( TProcessErrorRecoveryReq ) |
|
50 |
|
51 |
|
52 } |
|
53 |
|
54 #endif // PDPMCPRSTATES_H |