equal
deleted
inserted
replaced
|
1 |
|
2 /* |
|
3 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
4 * All rights reserved. |
|
5 * This component and the accompanying materials are made available |
|
6 * under the terms of "Eclipse Public License v1.0" |
|
7 * which accompanies this distribution, and is available |
|
8 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
9 * |
|
10 * Initial Contributors: |
|
11 * Nokia Corporation - initial contribution. |
|
12 * |
|
13 * Contributors: |
|
14 * |
|
15 * Description: |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef _SIPEXSIPTERMINATEDSTATE_H_ |
|
22 #define _SIPEXSIPTERMINATEDSTATE_H_ |
|
23 |
|
24 // INCLUDES |
|
25 #include "SIPExSIPStateBase.h" |
|
26 |
|
27 // FORWARD DECLARATIONS |
|
28 class CSIPExSIPEngine; |
|
29 |
|
30 // CLASS DECLARATION |
|
31 /** |
|
32 * Reacts to events that are possible in |
|
33 * "Established" state. |
|
34 */ |
|
35 class SIPExSIPTerminatedState: public CSIPExSIPStateBase |
|
36 { |
|
37 public:// Constructors and destructor |
|
38 /** |
|
39 * Two-phased constructor. |
|
40 */ |
|
41 IMPORT_C static SIPExSIPTerminatedState* NewL(); |
|
42 |
|
43 /** |
|
44 * Destructor |
|
45 */ |
|
46 IMPORT_C virtual ~SIPExSIPTerminatedState(); |
|
47 |
|
48 public://new functions |
|
49 /** |
|
50 * Links the states |
|
51 */ |
|
52 IMPORT_C void LinkStates(); |
|
53 |
|
54 public://functions from base class |
|
55 |
|
56 |
|
57 private: |
|
58 /** |
|
59 * C++ default constructor. |
|
60 */ |
|
61 SIPExSIPTerminatedState(); |
|
62 |
|
63 private://data members |
|
64 |
|
65 }; |
|
66 |
|
67 #endif // _SIPEXSIPTERMINATEDSTATE_H_ |
|
68 |