equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2010 Kanrikogaku Kenkyusho, Ltd. |
|
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 * Kanrikogaku Kenkyusho, Ltd. - Initial contribution |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * {Description of the file} |
|
16 * |
|
17 */ |
|
18 |
|
19 // Protection against nested includes |
|
20 #ifndef __DIRECTPRINTSELECTITEM_H__ |
|
21 #define __DIRECTPRINTSELECTITEM_H__ |
|
22 |
|
23 // System includes |
|
24 #include <e32cmn.h> |
|
25 |
|
26 // Class declaration |
|
27 /** |
|
28 * Select item information class |
|
29 * more_complete_description |
|
30 */ |
|
31 class TDirectPrintSelectItem |
|
32 { |
|
33 public: |
|
34 /** Id. */ |
|
35 TInt iId; |
|
36 /** Name. */ |
|
37 TBuf<50> iName; |
|
38 }; |
|
39 |
|
40 typedef RArray<TDirectPrintSelectItem> RSelectItemArray; |
|
41 |
|
42 #endif // __DIRECTPRINTSELECTITEM_H__ |