📄 anyxml.h
字号:
/*
* ============================================================================
* Name: CAnyXml from AnyXml.cpp
* Part of: AnyWare
* Created: 15/12/2003 by EMCC Software Ltd
* Description: Provides parsing and generation of a simple subset of XML
*
* Version: 1
* Copyright: EMCC Software Ltd
* ============================================================================
*/
#ifndef __ANYXML_H__
#define __ANYXML_H__
// System includes
#include <e32base.h>
// User includes
#include "SimpleXml.h"
// Filename and UID needed to dynamically load the DLL containing this class
//#define KAnyXmlDllName (_L("AnyXml"))
// (UID 1 is KDynamicLibraryUid, since we are a DLL)
// (UID 2 is KSharedLibraryUid, since we are not really polymorphic)
//const TUid KAnyXmlDllUid = {0x101FDA86}; // UID 3
/**
* CAnyXml
* XML parsing and generation
*
*/
typedef CSimpleXml CAnyXml;
typedef CXmlAttribute CAnyXmlAttribute;
typedef CXmlChunk CAnyXmlChunk;
typedef CXmlText CAnyXmlText;
typedef CXmlElement CAnyXmlElement;
#endif // __ANYXML_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -