equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-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 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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 /** |
|
20 @file |
|
21 @internalComponent |
|
22 */ |
|
23 |
|
24 #ifdef GENERATE_ERRORS |
|
25 |
|
26 #ifndef __UNKNOWNFIELD_H__ |
|
27 #define __UNKNOWNFIELD_H__ |
|
28 |
|
29 |
|
30 #include "structure.h" |
|
31 #include "sisblob.h" |
|
32 #include "numeric.h" |
|
33 |
|
34 class CSISUnknownField : public CStructure <CSISFieldRoot::ESISUnknown> |
|
35 { |
|
36 |
|
37 public: |
|
38 CSISUnknownField(); |
|
39 CSISUnknownField(const CSISUnknownField& aInitialiser); |
|
40 |
|
41 virtual std::string Name () const; |
|
42 |
|
43 private: |
|
44 void InsertMembers(); |
|
45 |
|
46 private: |
|
47 CSISUInt8 iDigit; |
|
48 |
|
49 }; |
|
50 |
|
51 inline void CSISUnknownField::InsertMembers() |
|
52 { |
|
53 InsertMember(iDigit); |
|
54 } |
|
55 |
|
56 |
|
57 |
|
58 #endif //__UNKNOWNFIELD_H__ |
|
59 |
|
60 #endif //GENERATE_ERRORS |