00001 /* 00002 * ============================================================================== 00003 * Name : XmlEngDataSerializer.h 00004 * Part of : Xml Engine / DOM XPath C++ Wrapper 00005 * Interface : Domain, XML Engine DOM API 00006 * Description : Interface class describing class that may be used as 00007 * serializer for binary data 00008 * Version : %version: 4 % 00009 * 00010 * Copyright © 2006-2006 Nokia. All rights reserved. 00011 * This material, including documentation and any related 00012 * computer programs, is protected by copyright controlled by 00013 * Nokia. All rights are reserved. Copying, including 00014 * reproducing, storing, adapting or translating, any 00015 * or all of this material requires the prior written consent of 00016 * Nokia. This material also contains confidential 00017 * information which may not be disclosed to others without the 00018 * prior written consent of Nokia. 00019 * ============================================================================== 00020 */ 00021 00022 #ifndef XMLENGINE_MDATASERIALIZER_H_INCLUDED 00023 #define XMLENGINE_MDATASERIALIZER_H_INCLUDED 00024 00025 #include "xmlengnode.h" 00026 00034 class MXmlEngDataSerializer 00035 { 00036 public: 00044 virtual TPtrC8 SerializeDataL(TXmlEngNode aNode) = 0; 00045 }; 00046 00047 00048 #endif /* XMLENGINE_MDATASERIALIZER_H_INCLUDED */