equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008-2008 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: Client information for a single call |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef CPECLIENTINFORMATION_H_ |
|
20 #define CPECLIENTINFORMATION_H_ |
|
21 |
|
22 #include <e32base.h> |
|
23 #include "mpeclientinformation.h" |
|
24 |
|
25 /** |
|
26 * Holds client information for a single call |
|
27 * |
|
28 * This information is specific on a per-call basis. |
|
29 */ |
|
30 NONSHARABLE_CLASS( CPEClientInformation ) |
|
31 : public CBase, public MPEClientInformation |
|
32 { |
|
33 |
|
34 public: |
|
35 |
|
36 /** |
|
37 * Two-phased constructor. |
|
38 * |
|
39 * @return The newly created object. Ownership is transferred to the caller. |
|
40 */ |
|
41 IMPORT_C static CPEClientInformation* NewL(); |
|
42 |
|
43 /** |
|
44 * Destructor. |
|
45 */ |
|
46 virtual ~CPEClientInformation(); |
|
47 |
|
48 protected: |
|
49 |
|
50 /** |
|
51 * Constructor. |
|
52 */ |
|
53 CPEClientInformation(); |
|
54 }; |
|
55 |
|
56 #endif /*CPECLIENTINFORMATION_H_*/ |