equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006-2009 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 * Name : CSatDataPackage.h |
|
16 * Part of : Common SIM ATK TSY / commonsimatktsy |
|
17 * Extension class for CMmDataPackage (defines SAT data package) |
|
18 * Version : draft |
|
19 * |
|
20 */ |
|
21 |
|
22 |
|
23 |
|
24 #ifndef CSATDATAPACKAGE_H |
|
25 #define CSATDATAPACKAGE_H |
|
26 |
|
27 // INCLUDES |
|
28 #include <ctsy/pluginapi/cmmdatapackage.h> |
|
29 |
|
30 // DESCRIPTION |
|
31 // |
|
32 // |
|
33 // |
|
34 NONSHARABLE_CLASS ( CSatDataPackage ) : public CMmDataPackage |
|
35 { |
|
36 public: |
|
37 CSatDataPackage( void ) |
|
38 { |
|
39 iType = CSatDataPackage::KSatType; |
|
40 } //default constructor |
|
41 }; |
|
42 |
|
43 #endif //CSatDataPackage_H |
|
44 |
|
45 // End of file |