anyxml.h

来自「symbian s60上的GPS」· C头文件 代码 · 共 44 行

H
44
字号
/*
* ============================================================================
*  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 + =
减小字号Ctrl + -
显示快捷键?