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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? tinyxml.h

?? wince設置MUTE,設置設備靜音的代碼CE下。
?? H
?? 第 1 頁 / 共 5 頁
字號:
	}	// 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	const TIXML_STRING& ValueTStr() const { return value; }	/** 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.		This is essentially a SAX interface for TinyXML. (Note however it doesn't re-parse		the XML for the callbacks, so the performance of TinyXML is unchanged by using this

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品欧美二区三区中文字幕| 日韩电影在线免费看| 国产一区二区不卡在线| 欧洲人成人精品| 国产黄色精品视频| 久久99国产精品久久99| 亚洲欧美日韩精品久久久久| 欧美成人福利视频| 欧美日韩日本视频| 色婷婷久久久综合中文字幕| 国产sm精品调教视频网站| 美女视频黄免费的久久| 亚洲福利视频导航| 亚洲精品免费在线观看| 国产精品蜜臀在线观看| 久久精品欧美一区二区三区麻豆| 欧美欧美欧美欧美首页| 欧美自拍丝袜亚洲| 在线观看一区日韩| 91黄色小视频| 欧美老年两性高潮| 欧美军同video69gay| 欧美精品九九99久久| 欧美三级日本三级少妇99| 在线视频观看一区| 在线观看日韩毛片| 欧美日韩日日夜夜| 日韩精品一区二区三区视频| 日韩免费视频一区二区| 欧美成人精品福利| 精品国产一区二区三区久久久蜜月| 欧美精品在线视频| 日韩精品在线一区| 国产人成亚洲第一网站在线播放| 中文字幕国产精品一区二区| 综合亚洲深深色噜噜狠狠网站| 亚洲欧美综合另类在线卡通| 亚洲激情自拍视频| 视频一区欧美日韩| 国产一区二区成人久久免费影院| 天天射综合影视| 亚洲综合丁香婷婷六月香| 亚洲精选视频在线| 亚洲国产一区二区三区青草影视| 天天综合色天天| 国产精品小仙女| 成人激情黄色小说| 欧美日韩一区二区三区在线看| 欧美精品自拍偷拍| 中文成人av在线| 亚洲成av人片一区二区| 国产综合色在线视频区| gogo大胆日本视频一区| 69堂精品视频| 国产精品久久三| 免费精品视频最新在线| 99精品视频在线播放观看| 制服丝袜国产精品| 亚洲精品伦理在线| 狠狠色2019综合网| 在线亚洲+欧美+日本专区| 久久精品这里都是精品| 亚洲高清在线视频| 99麻豆久久久国产精品免费| 欧美一区二区三区白人| 亚洲免费观看高清在线观看| 另类小说欧美激情| 欧美日韩国产天堂| 亚洲欧美一区二区久久| 风流少妇一区二区| 亚洲精品一区二区三区精华液| 亚洲综合视频在线观看| 粉嫩绯色av一区二区在线观看| 欧美理论在线播放| 亚洲一区二区三区四区在线免费观看| 国产黄色91视频| 精品99一区二区三区| 欧美aaa在线| 91精品黄色片免费大全| 亚洲一区二区三区四区五区中文| 成人黄色免费短视频| 日本一区二区成人| 亚洲午夜久久久久久久久久久 | 亚洲伦理在线免费看| 国产激情精品久久久第一区二区 | 欧美国产精品久久| 成人性视频网站| 亚洲国产精品av| 丰满放荡岳乱妇91ww| 中文字幕精品一区二区三区精品 | 欧美精品一区二区三区蜜桃| 日韩激情一二三区| 日韩欧美高清dvd碟片| 日韩中文字幕不卡| 91精品国产乱| 免费精品视频在线| 久久久不卡网国产精品二区| 韩国女主播成人在线观看| xfplay精品久久| 成人av网站大全| 亚洲综合小说图片| 5858s免费视频成人| 久久国产综合精品| 欧美激情一二三区| 欧美性欧美巨大黑白大战| 视频一区免费在线观看| 久久久久久久电影| 色综合网色综合| 亚洲成人av一区二区三区| 欧美一级在线视频| 丁香网亚洲国际| 亚洲国产精品久久不卡毛片| 精品日韩成人av| 99久久久国产精品| 日韩在线a电影| 亚洲国产精品成人综合| 欧美日产国产精品| 国产成人在线视频网址| 午夜影院在线观看欧美| 国产欧美精品一区aⅴ影院| 欧美三级日韩三级| 精品影院一区二区久久久| 欧美日韩国产在线观看| 国产成人精品免费| 国产老妇另类xxxxx| 曰韩精品一区二区| 亚洲国产精品传媒在线观看| 91.麻豆视频| 日本黄色一区二区| 国产成人一区二区精品非洲| 亚洲高清视频在线| 国产精品久久久久久久午夜片| 91精品国产色综合久久ai换脸| 成人激情小说乱人伦| 久久精品999| 午夜精品久久久久| 椎名由奈av一区二区三区| 久久人人97超碰com| 日韩你懂的在线观看| 欧美日韩www| 欧美三级资源在线| 欧美体内she精高潮| 色94色欧美sute亚洲线路一久| 国产中文一区二区三区| 精品一区二区在线免费观看| 午夜精品久久久久影视| 夜夜精品浪潮av一区二区三区| 国产精品二三区| 最新不卡av在线| 亚洲色图视频网站| 成人欧美一区二区三区视频网页| 欧美激情在线看| 中文字幕 久热精品 视频在线 | 成人高清免费观看| 成人精品鲁一区一区二区| 国产成人在线视频免费播放| 国产永久精品大片wwwapp | 国产精品一区二区久久不卡| 美国三级日本三级久久99| 视频一区二区三区入口| 免费成人在线影院| 国产成人无遮挡在线视频| 粉嫩av一区二区三区粉嫩| av在线一区二区三区| 91国偷自产一区二区开放时间| 91久久精品网| 日韩欧美视频在线| 久久综合久久鬼色中文字| 91精品国产黑色紧身裤美女| 色天天综合色天天久久| 欧美日本视频在线| 欧美成人精品二区三区99精品| 久久久777精品电影网影网| 国产精品久久久久久久久免费桃花| 国产女主播视频一区二区| 亚洲欧美日韩在线不卡| 日韩成人av影视| 成人激情综合网站| 欧美精品一二三区| 久久免费精品国产久精品久久久久| 中文字幕免费不卡在线| 午夜精品aaa| 成人激情动漫在线观看| 欧美日韩一区二区三区四区| 国产精品麻豆99久久久久久| 亚洲国产精品麻豆| 风间由美中文字幕在线看视频国产欧美 | 香蕉久久一区二区不卡无毒影院| 国产一区 二区 三区一级| 色视频一区二区| 欧美激情一区二区在线| 日韩精品一二区| 色狠狠av一区二区三区| 久久亚洲精华国产精华液| 亚洲韩国一区二区三区| 成人高清在线视频| 久久综合色之久久综合| 日韩中文字幕亚洲一区二区va在线| jiyouzz国产精品久久| 精品国产三级电影在线观看|