equal
deleted
inserted
replaced
|
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // SAX libxml2 parser plugin inlined definitions |
|
15 // This method returns pool object. |
|
16 // |
|
17 |
|
18 |
|
19 |
|
20 inline RStringPool& CXMLEngineSAXPlugin::StringPool() |
|
21 { |
|
22 return iStringPool; |
|
23 } |
|
24 |
|
25 /** |
|
26 * This method returns a user handler object. |
|
27 */ |
|
28 inline MContentHandler* CXMLEngineSAXPlugin::getContentHandler() const |
|
29 { |
|
30 return iContentHandler; |
|
31 } |
|
32 |
|
33 /** |
|
34 * This method returns error status. |
|
35 */ |
|
36 inline TBool CXMLEngineSAXPlugin::IsErrorStatus() |
|
37 { |
|
38 return Flag_Error_Status; |
|
39 } |
|
40 |
|
41 /** |
|
42 * This method sets error status. |
|
43 */ |
|
44 inline void CXMLEngineSAXPlugin::SetErrorStatus(TBool aStatus) |
|
45 { |
|
46 Flag_Error_Status = aStatus; |
|
47 } |
|
48 |