equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 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 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 #ifndef C_CSTUNSHAREDSECRETACTIVE_H |
|
22 #define C_CSTUNSHAREDSECRETACTIVE_H |
|
23 |
|
24 // INCLUDES |
|
25 #include <e32base.h> |
|
26 #include "cstunsharedsecretstate.h" |
|
27 |
|
28 // FORWARD DECLARATIONS |
|
29 |
|
30 // CLASS DECLARATION |
|
31 |
|
32 /** |
|
33 * The shared secret has been obtained and can be used. |
|
34 */ |
|
35 class CSTUNSharedSecretActive : public CSTUNSharedSecretState |
|
36 { |
|
37 public: // Constructors and destructor |
|
38 |
|
39 /** |
|
40 * Destructor |
|
41 */ |
|
42 CSTUNSharedSecretActive() |
|
43 { |
|
44 } |
|
45 |
|
46 /** |
|
47 * Destructor |
|
48 */ |
|
49 ~CSTUNSharedSecretActive() |
|
50 { |
|
51 } |
|
52 |
|
53 private: |
|
54 |
|
55 /** |
|
56 * Copy Destructor has dummy implementation, as it is declared private |
|
57 * and not used. |
|
58 */ |
|
59 CSTUNSharedSecretActive( const CSTUNSharedSecretActive& /*aActive*/ ) : |
|
60 CSTUNSharedSecretState() |
|
61 { |
|
62 } |
|
63 }; |
|
64 |
|
65 #endif // C_CSTUNSHAREDSECRETACTIVE_H |