Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
2 * Copyright (c) 2006-2006 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: All binary data functions
24 #ifndef XMLENGINE_DATACONTAINER_H_INCLUDED
25 #define XMLENGINE_DATACONTAINER_H_INCLUDED
27 #include "xmlengnode.h"
31 * TXmlEngDataContainer is a class for representing different types
32 * of binary data in DOM tree.
34 * It can be cusom-serialized using MXmlEngDataSerializer interface which can
35 * be set in TXmlEngSerializationOptions used for saving the tree.
37 * @lib XmlEngineDOM.lib
40 class TXmlEngDataContainer : public TXmlEngNode
45 * Get CID of data container.
48 * @return Cid of data container
51 IMPORT_C TPtrC8 Cid() const;
54 * Get data size in bytes
57 * @return Number of bytes occupied by data
59 IMPORT_C TUint Size() const;
67 inline TXmlEngDataContainer();
73 * @param aInternal node pointer
75 inline TXmlEngDataContainer(void* aInternal);
80 #include "xmlengdatacontainer.inl"
82 #endif /* XMLENGINE_DATACONTAINER_H_INCLUDED */