00001 /* 00002 * ============================================================================== 00003 * Name : XmlEngUserData.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 contains user 00007 * data aded to node 00008 * Version : %version: 3 % 00009 * 00010 * Copyright © 2004-2005 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_USERDATA_H_INCLUDED 00023 #define XMLENGINE_USERDATA_H_INCLUDED 00024 00025 #include <e32def.h> 00026 00035 class MXmlEngUserData { 00036 public: 00042 virtual void Destroy() = 0; 00043 00056 virtual MXmlEngUserData* CloneL() = 0; 00057 00066 virtual void* ID() {return NULL;} 00067 }; 00068 00069 00070 00071 #endif /* XMLENGINE_USERDATA_H_INCLUDED*/