|
1 /* |
|
2 * Copyright (c) 2004-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 the License "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: Content information.* |
|
15 */ |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 #include <e32base.h> |
|
21 #include "CIptvEpgContent.h" |
|
22 |
|
23 // --------------------------------------------------------- |
|
24 // CIptvEpgContent::ConstructL |
|
25 // Symbian 2nd phase constructor can leave. |
|
26 // --------------------------------------------------------- |
|
27 // |
|
28 void CIptvEpgContent::ConstructL() |
|
29 { |
|
30 } |
|
31 |
|
32 // --------------------------------------------------------- |
|
33 // CIptvEpgContent::NewL |
|
34 // Two-phased constructor. |
|
35 // --------------------------------------------------------- |
|
36 // |
|
37 EXPORT_C CIptvEpgContent* CIptvEpgContent::NewL() |
|
38 { |
|
39 CIptvEpgContent* self = new (ELeave) CIptvEpgContent(); |
|
40 CleanupStack::PushL( self ); |
|
41 |
|
42 self->ConstructL(); |
|
43 |
|
44 CleanupStack::Pop( self ); |
|
45 return self; |
|
46 } |
|
47 |
|
48 // --------------------------------------------------------- |
|
49 // CIptvEpgContent::~CIptvEpgContent |
|
50 // Destructor |
|
51 // --------------------------------------------------------- |
|
52 // |
|
53 CIptvEpgContent::~CIptvEpgContent() |
|
54 { |
|
55 } |
|
56 |
|
57 // --------------------------------------------------------- |
|
58 // CIptvEpgContent::CIptvEpgContent |
|
59 // C++ default constructor |
|
60 // --------------------------------------------------------- |
|
61 // |
|
62 CIptvEpgContent::CIptvEpgContent() |
|
63 { |
|
64 } |