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 // Implementation of XOP serializer Output Stream |
|
15 // |
|
16 |
|
17 |
|
18 |
|
19 /** |
|
20 @file |
|
21 @internalComponent |
|
22 @released |
|
23 */ |
|
24 #ifndef XMLENGXOPOUTPUTSTREAM_H |
|
25 #define XMLENGXOPOUTPUTSTREAM_H |
|
26 |
|
27 #include <f32file.h> |
|
28 #include <xml/dom/xmlengoutputstream.h> |
|
29 |
|
30 /** |
|
31 * MXmlEngSXOPOutputStream is used by XML Engine Serializer to |
|
32 * serialize XML data. |
|
33 * NOTE: this class should never be exported due to binary compatibility issues |
|
34 * |
|
35 */ |
|
36 class MXmlEngSXOPOutputStream : public MXmlEngOutputStream |
|
37 { |
|
38 public: |
|
39 /** |
|
40 * Callback for final closing stream |
|
41 * |
|
42 * @return Error code |
|
43 */ |
|
44 virtual TInt CloseAll() = 0; |
|
45 |
|
46 /** |
|
47 * Checks error flag |
|
48 * |
|
49 * @return error code |
|
50 */ |
|
51 virtual TInt CheckError() = 0; |
|
52 }; |
|
53 |
|
54 |
|
55 |
|
56 #endif /* XMLENGXOPOUTPUTSTREAM_H */ |