亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? tinyxml.h

?? tinyxml project for Visual Studio 2008. A small xml parser, the result is lib file for embedded ARM
?? H
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
	// Return true if the next characters in the stream are any of the endTag sequences.	// Ignore case only works for english, and should only be relied on when comparing	// to English words: StringEqual( p, "version", true ) is fine.	static bool StringEqual(	const char* p,								const char* endTag,								bool ignoreCase,								TiXmlEncoding encoding );	static const char* errorString[ TIXML_ERROR_STRING_COUNT ];	TiXmlCursor location;    /// Field containing a generic user pointer	void*			userData;		// None of these methods are reliable for any language except English.	// Good for approximation, not great for accuracy.	static int IsAlpha( unsigned char anyByte, TiXmlEncoding encoding );	static int IsAlphaNum( unsigned char anyByte, TiXmlEncoding encoding );	inline static int ToLower( int v, TiXmlEncoding encoding )	{		if ( encoding == TIXML_ENCODING_UTF8 )		{			if ( v < 128 ) return tolower( v );			return v;		}		else		{			return tolower( v );		}	}	static void ConvertUTF32ToUTF8( unsigned long input, char* output, int* length );private:	TiXmlBase( const TiXmlBase& );				// not implemented.	void operator=( const TiXmlBase& base );	// not allowed.	struct Entity	{		const char*     str;		unsigned int	strLength;		char		    chr;	};	enum	{		NUM_ENTITY = 5,		MAX_ENTITY_LENGTH = 6	};	static Entity entity[ NUM_ENTITY ];	static bool condenseWhiteSpace;};/** The parent class for everything in the Document Object Model.	(Except for attributes).	Nodes have siblings, a parent, and children. A node can be	in a document, or stand on its own. The type of a TiXmlNode	can be queried, and it can be cast to its more defined type.*/class TiXmlNode : public TiXmlBase{	friend class TiXmlDocument;	friend class TiXmlElement;public:	#ifdef TIXML_USE_STL		    /** An input stream operator, for every class. Tolerant of newlines and		    formatting, but doesn't expect them.	    */	    friend std::istream& operator >> (std::istream& in, TiXmlNode& base);	    /** An output stream operator, for every class. Note that this outputs		    without any newlines or formatting, as opposed to Print(), which		    includes tabs and new lines.		    The operator<< and operator>> are not completely symmetric. Writing		    a node to a stream is very well defined. You'll get a nice stream		    of output, without any extra whitespace or newlines.		    		    But reading is not as well defined. (As it always is.) If you create		    a TiXmlElement (for example) and read that from an input stream,		    the text needs to define an element or junk will result. This is		    true of all input streams, but it's worth keeping in mind.		    A TiXmlDocument will read nodes until it reads a root element, and			all the children of that root element.	    */		    friend std::ostream& operator<< (std::ostream& out, const TiXmlNode& base);		/// Appends the XML node or attribute to a std::string.		friend std::string& operator<< (std::string& out, const TiXmlNode& base );	#endif	/** The types of XML nodes supported by TinyXml. (All the			unsupported types are picked up by UNKNOWN.)	*/	enum NodeType	{		DOCUMENT,		ELEMENT,		COMMENT,		UNKNOWN,		TEXT,		DECLARATION,		TYPECOUNT	};	virtual ~TiXmlNode();	/** The meaning of 'value' changes for the specific type of		TiXmlNode.		@verbatim		Document:	filename of the xml file		Element:	name of the element		Comment:	the comment text		Unknown:	the tag contents		Text:		the text string		@endverbatim		The subclasses will wrap this function.	*/	const char *Value() const { return value.c_str (); }    #ifdef TIXML_USE_STL	/** Return Value() as a std::string. If you only use STL,	    this is more efficient than calling Value().		Only available in STL mode.	*/	const std::string& ValueStr() const { return value; }	#endif	/** Changes the value of the node. Defined as:		@verbatim		Document:	filename of the xml file		Element:	name of the element		Comment:	the comment text		Unknown:	the tag contents		Text:		the text string		@endverbatim	*/	void SetValue(const char * _value) { value = _value;}    #ifdef TIXML_USE_STL	/// STL std::string form.	void SetValue( const std::string& _value )	{ value = _value; }	#endif	/// Delete all the children of this node. Does not affect 'this'.	void Clear();	/// One step up the DOM.	TiXmlNode* Parent()							{ return parent; }	const TiXmlNode* Parent() const				{ return parent; }	const TiXmlNode* FirstChild()	const	{ return firstChild; }		///< The first child of this node. Will be null if there are no children.	TiXmlNode* FirstChild()					{ return firstChild; }	const TiXmlNode* FirstChild( const char * value ) const;			///< The first child of this node with the matching 'value'. Will be null if none found.	/// The first child of this node with the matching 'value'. Will be null if none found.	TiXmlNode* FirstChild( const char * _value ) {		// Call through to the const version - safe since nothing is changed. Exiting syntax: cast this to a const (always safe)		// call the method, cast the return back to non-const.		return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->FirstChild( _value ));	}	const TiXmlNode* LastChild() const	{ return lastChild; }		/// The last child of this node. Will be null if there are no children.	TiXmlNode* LastChild()	{ return lastChild; }		const TiXmlNode* LastChild( const char * value ) const;			/// The last child of this node matching 'value'. Will be null if there are no children.	TiXmlNode* LastChild( const char * _value ) {		return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->LastChild( _value ));	}    #ifdef TIXML_USE_STL	const TiXmlNode* FirstChild( const std::string& _value ) const	{	return FirstChild (_value.c_str ());	}	///< STL std::string form.	TiXmlNode* FirstChild( const std::string& _value )				{	return FirstChild (_value.c_str ());	}	///< STL std::string form.	const TiXmlNode* LastChild( const std::string& _value ) const	{	return LastChild (_value.c_str ());	}	///< STL std::string form.	TiXmlNode* LastChild( const std::string& _value )				{	return LastChild (_value.c_str ());	}	///< STL std::string form.	#endif	/** An alternate way to walk the children of a node.		One way to iterate over nodes is:		@verbatim			for( child = parent->FirstChild(); child; child = child->NextSibling() )		@endverbatim		IterateChildren does the same thing with the syntax:		@verbatim			child = 0;			while( child = parent->IterateChildren( child ) )		@endverbatim		IterateChildren takes the previous child as input and finds		the next one. If the previous child is null, it returns the		first. IterateChildren will return null when done.	*/	const TiXmlNode* IterateChildren( const TiXmlNode* previous ) const;	TiXmlNode* IterateChildren( const TiXmlNode* previous ) {		return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->IterateChildren( previous ) );	}	/// This flavor of IterateChildren searches for children with a particular 'value'	const TiXmlNode* IterateChildren( const char * value, const TiXmlNode* previous ) const;	TiXmlNode* IterateChildren( const char * _value, const TiXmlNode* previous ) {		return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->IterateChildren( _value, previous ) );	}    #ifdef TIXML_USE_STL	const TiXmlNode* IterateChildren( const std::string& _value, const TiXmlNode* previous ) const	{	return IterateChildren (_value.c_str (), previous);	}	///< STL std::string form.	TiXmlNode* IterateChildren( const std::string& _value, const TiXmlNode* previous ) {	return IterateChildren (_value.c_str (), previous);	}	///< STL std::string form.	#endif	/** Add a new node related to this. Adds a child past the LastChild.		Returns a pointer to the new object or NULL if an error occured.	*/	TiXmlNode* InsertEndChild( const TiXmlNode& addThis );	/** Add a new node related to this. Adds a child past the LastChild.		NOTE: the node to be added is passed by pointer, and will be		henceforth owned (and deleted) by tinyXml. This method is efficient		and avoids an extra copy, but should be used with care as it		uses a different memory model than the other insert functions.		@sa InsertEndChild	*/	TiXmlNode* LinkEndChild( TiXmlNode* addThis );	/** Add a new node related to this. Adds a child before the specified child.		Returns a pointer to the new object or NULL if an error occured.	*/	TiXmlNode* InsertBeforeChild( TiXmlNode* beforeThis, const TiXmlNode& addThis );	/** Add a new node related to this. Adds a child after the specified child.		Returns a pointer to the new object or NULL if an error occured.	*/	TiXmlNode* InsertAfterChild(  TiXmlNode* afterThis, const TiXmlNode& addThis );	/** Replace a child of this node.		Returns a pointer to the new object or NULL if an error occured.	*/	TiXmlNode* ReplaceChild( TiXmlNode* replaceThis, const TiXmlNode& withThis );	/// Delete a child of this node.	bool RemoveChild( TiXmlNode* removeThis );	/// Navigate to a sibling node.	const TiXmlNode* PreviousSibling() const			{ return prev; }	TiXmlNode* PreviousSibling()						{ return prev; }	/// Navigate to a sibling node.	const TiXmlNode* PreviousSibling( const char * ) const;	TiXmlNode* PreviousSibling( const char *_prev ) {		return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->PreviousSibling( _prev ) );	}    #ifdef TIXML_USE_STL	const TiXmlNode* PreviousSibling( const std::string& _value ) const	{	return PreviousSibling (_value.c_str ());	}	///< STL std::string form.	TiXmlNode* PreviousSibling( const std::string& _value ) 			{	return PreviousSibling (_value.c_str ());	}	///< STL std::string form.	const TiXmlNode* NextSibling( const std::string& _value) const		{	return NextSibling (_value.c_str ());	}	///< STL std::string form.	TiXmlNode* NextSibling( const std::string& _value) 					{	return NextSibling (_value.c_str ());	}	///< STL std::string form.	#endif	/// Navigate to a sibling node.	const TiXmlNode* NextSibling() const				{ return next; }	TiXmlNode* NextSibling()							{ return next; }	/// Navigate to a sibling node with the given 'value'.	const TiXmlNode* NextSibling( const char * ) const;	TiXmlNode* NextSibling( const char* _next ) {		return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->NextSibling( _next ) );	}	/** Convenience function to get through elements.		Calls NextSibling and ToElement. Will skip all non-Element		nodes. Returns 0 if there is not another element.	*/	const TiXmlElement* NextSiblingElement() const;	TiXmlElement* NextSiblingElement() {		return const_cast< TiXmlElement* >( (const_cast< const TiXmlNode* >(this))->NextSiblingElement() );	}	/** Convenience function to get through elements.		Calls NextSibling and ToElement. Will skip all non-Element		nodes. Returns 0 if there is not another element.	*/	const TiXmlElement* NextSiblingElement( const char * ) const;	TiXmlElement* NextSiblingElement( const char *_next ) {		return const_cast< TiXmlElement* >( (const_cast< const TiXmlNode* >(this))->NextSiblingElement( _next ) );	}    #ifdef TIXML_USE_STL	const TiXmlElement* NextSiblingElement( const std::string& _value) const	{	return NextSiblingElement (_value.c_str ());	}	///< STL std::string form.	TiXmlElement* NextSiblingElement( const std::string& _value)				{	return NextSiblingElement (_value.c_str ());	}	///< STL std::string form.	#endif	/// Convenience function to get through elements.	const TiXmlElement* FirstChildElement()	const;	TiXmlElement* FirstChildElement() {		return const_cast< TiXmlElement* >( (const_cast< const TiXmlNode* >(this))->FirstChildElement() );	}	/// Convenience function to get through elements.	const TiXmlElement* FirstChildElement( const char * _value ) const;	TiXmlElement* FirstChildElement( const char * _value ) {		return const_cast< TiXmlElement* >( (const_cast< const TiXmlNode* >(this))->FirstChildElement( _value ) );	}    #ifdef TIXML_USE_STL	const TiXmlElement* FirstChildElement( const std::string& _value ) const	{	return FirstChildElement (_value.c_str ());	}	///< STL std::string form.	TiXmlElement* FirstChildElement( const std::string& _value )				{	return FirstChildElement (_value.c_str ());	}	///< STL std::string form.	#endif	/** Query the type (as an enumerated value, above) of this node.		The possible types are: DOCUMENT, ELEMENT, COMMENT,								UNKNOWN, TEXT, and DECLARATION.	*/	int Type() const	{ return type; }	/** Return a pointer to the Document this node lives in.		Returns null if not in a document.	*/	const TiXmlDocument* GetDocument() const;	TiXmlDocument* GetDocument() {		return const_cast< TiXmlDocument* >( (const_cast< const TiXmlNode* >(this))->GetDocument() );	}	/// Returns true if this node has no children.	bool NoChildren() const						{ return !firstChild; }	virtual const TiXmlDocument*    ToDocument()    const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.	virtual const TiXmlElement*     ToElement()     const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.	virtual const TiXmlComment*     ToComment()     const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.	virtual const TiXmlUnknown*     ToUnknown()     const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.	virtual const TiXmlText*        ToText()        const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.	virtual const TiXmlDeclaration* ToDeclaration() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.	virtual TiXmlDocument*          ToDocument()    { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.	virtual TiXmlElement*           ToElement()	    { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.	virtual TiXmlComment*           ToComment()     { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.	virtual TiXmlUnknown*           ToUnknown()	    { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.	virtual TiXmlText*	            ToText()        { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.	virtual TiXmlDeclaration*       ToDeclaration() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.	/** Create an exact duplicate of this node and return it. The memory must be deleted		by the caller. 	*/	virtual TiXmlNode* Clone() const = 0;	/** Accept a hierchical visit the nodes in the TinyXML DOM. Every node in the 		XML tree will be conditionally visited and the host will be called back		via the TiXmlVisitor interface.

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线电影国产精品| 亚洲人快播电影网| 欧美在线免费观看视频| 成人黄页在线观看| 91福利国产精品| 色综合久久中文字幕| 99精品视频在线免费观看| 99久久久精品免费观看国产蜜| 国产精选一区二区三区| 国产精品一区二区久激情瑜伽| 国产在线精品一区二区夜色| 韩国v欧美v亚洲v日本v| 成人性视频网站| 91视频你懂的| 欧美三级乱人伦电影| 欧美日韩mp4| 精品久久久久久久久久久久久久久 | 欧美激情综合在线| 亚洲天堂福利av| 亚洲bt欧美bt精品| 免费在线观看一区二区三区| 欧美aaa在线| 国产成人av电影在线观看| 99久久久精品| 91精品国产综合久久久久久漫画| 中文字幕在线免费不卡| 中文字幕在线不卡国产视频| 一区二区三区在线视频播放| 日本人妖一区二区| 粉嫩av一区二区三区| 色综合久久久久综合99| 日韩欧美亚洲国产另类| 国产精品美女久久久久高潮| 亚洲成人av一区| 国产大陆精品国产| 欧美日韩一区二区欧美激情 | 国产美女久久久久| 色综合久久久久网| 久久久综合精品| 亚洲欧美色综合| 美女在线一区二区| 色视频一区二区| 久久午夜电影网| 亚洲一区二区三区中文字幕| 国产精品一区二区在线观看网站| 色悠悠久久综合| 久久久久久麻豆| 日本亚洲电影天堂| 色国产精品一区在线观看| 国产午夜精品久久久久久久| 午夜精品免费在线观看| 成人高清视频在线观看| 欧美成人欧美edvon| 一区二区三区在线看| 国产成人精品亚洲午夜麻豆| 宅男在线国产精品| 亚洲精品国久久99热| 成人免费视频视频在线观看免费| 欧美一级欧美三级在线观看| 亚洲精品乱码久久久久久久久 | 久久精品亚洲麻豆av一区二区| 亚洲男人的天堂在线观看| 国内精品国产三级国产a久久| 6080yy午夜一二三区久久| 国产精品的网站| 激情文学综合插| 日韩视频在线观看一区二区| 亚洲综合在线观看视频| 懂色中文一区二区在线播放| 久久久蜜桃精品| 国产综合色精品一区二区三区| 欧美一区二区福利在线| 日韩精品一级二级| 欧美日韩一区二区三区高清| 亚洲成人先锋电影| 欧美群妇大交群中文字幕| 又紧又大又爽精品一区二区| 99re热视频精品| 一区在线观看视频| 色综合av在线| 性感美女极品91精品| 欧美日韩一区久久| 天堂成人国产精品一区| 91精品国产综合久久蜜臀| 男人操女人的视频在线观看欧美| 日韩欧美亚洲国产另类| 久久99精品国产麻豆婷婷洗澡| 久久综合视频网| 波波电影院一区二区三区| 亚洲人一二三区| 91黄视频在线| 另类小说色综合网站| 国产欧美日韩三级| 91丨porny丨中文| 亚洲va国产天堂va久久en| 欧美成人综合网站| 国产不卡在线播放| 亚洲精品五月天| 色婷婷综合激情| 日产国产欧美视频一区精品| 精品国产免费一区二区三区四区 | 午夜精品久久久久久久久| 91超碰这里只有精品国产| 色综合欧美在线视频区| 日韩成人午夜精品| 国产丝袜在线精品| 欧美三级视频在线播放| 久久99最新地址| 亚洲欧美视频在线观看视频| 日韩欧美一二三四区| av中文字幕在线不卡| 日韩电影在线免费观看| 国产精品久久久久影院| 日韩一级完整毛片| 99精品视频一区| 黄色精品一二区| 亚洲国产成人av好男人在线观看| 久久只精品国产| 8x福利精品第一导航| 成人av免费在线观看| 久久精品噜噜噜成人av农村| 亚洲三级电影全部在线观看高清| 精品欧美一区二区久久| 欧洲激情一区二区| 波多野结衣在线一区| 久久国产生活片100| 亚洲狠狠爱一区二区三区| 中文字幕免费在线观看视频一区| 欧美日韩亚洲综合| 99精品黄色片免费大全| 激情成人综合网| 免费观看久久久4p| 亚洲国产一区二区在线播放| 国产精品国产三级国产普通话99 | 欧美岛国在线观看| 欧洲精品一区二区| 色综合色综合色综合色综合色综合 | 三级成人在线视频| 亚洲色图.com| 国产精品卡一卡二卡三| 国产欧美综合在线观看第十页| 日韩精品一区二区三区四区| 欧美日韩国产高清一区二区三区| 一本一道久久a久久精品 | 欧美大胆人体bbbb| 制服丝袜中文字幕一区| 欧美精品久久99久久在免费线| 在线视频国产一区| 在线免费观看视频一区| 91久久人澡人人添人人爽欧美| 色综合中文字幕国产 | 91精品国产综合久久久久久久久久 | 久久精品国产精品亚洲综合| 石原莉奈一区二区三区在线观看| 亚洲国产另类av| 婷婷亚洲久悠悠色悠在线播放| 亚洲国产精品久久久久婷婷884| 一区二区三区国产精品| 亚洲中国最大av网站| 婷婷国产在线综合| 蜜桃av一区二区在线观看 | 亚洲欧美乱综合| 亚洲精品国产高清久久伦理二区| 亚洲精品国产第一综合99久久 | 91精品欧美久久久久久动漫 | 欧美激情综合在线| 亚洲乱码国产乱码精品精98午夜 | 日韩午夜激情免费电影| 久久影音资源网| 亚洲欧美一区二区三区孕妇| 一区二区三区四区激情 | 粉嫩久久99精品久久久久久夜| 成人三级在线视频| 欧美日韩三级一区二区| 日韩精品一区二区三区视频播放| 欧美精品一区二| 亚洲免费看黄网站| 日本中文在线一区| 精品伊人久久久久7777人| 成人性视频免费网站| 欧美日韩中文字幕一区| 精品乱码亚洲一区二区不卡| 国产精品蜜臀在线观看| 天天影视涩香欲综合网| 国产大片一区二区| 337p亚洲精品色噜噜狠狠| 日本一区二区不卡视频| 亚洲国产精品天堂| 成人性生交大片免费看视频在线| 欧美中文字幕不卡| 精品处破学生在线二十三| 亚洲美女屁股眼交| 精品一区二区精品| 在线观看91精品国产入口| 欧美不卡一二三| 亚洲一区在线观看网站| 国产乱码字幕精品高清av | 日本一区二区免费在线| 亚洲电影中文字幕在线观看| 国产成人综合亚洲网站|