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

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

?? tinyxml.h

?? tinyxml project for Visual Studio 2008. A small xml parser, the result is lib file for embedded ARM
?? H
?? 第 1 頁 / 共 5 頁
字號:
		Note that this function can be misleading. If the element foo was created from		this XML:		@verbatim		<foo><b>This is text</b></foo> 		@endverbatim		then the value of str would be null. The first child node isn't a text node, it is		another element. From this XML:		@verbatim		<foo>This is <b>text</b></foo> 		@endverbatim		GetText() will return "This is ".		WARNING: GetText() accesses a child node - don't become confused with the 				 similarly named TiXmlHandle::Text() and TiXmlNode::ToText() which are 				 safe type casts on the referenced node.	*/	const char* GetText() const;	/// Creates a new Element and returns it - the returned element is a copy.	virtual TiXmlNode* Clone() const;	// Print the Element to a FILE stream.	virtual void Print( FILE* cfile, int depth ) const;	/*	Attribtue parsing starts: next char past '<'						 returns: next char past '>'	*/	virtual const char* Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding );	virtual const TiXmlElement*     ToElement()     const { return this; } ///< Cast to a more defined type. Will return null not of the requested type.	virtual TiXmlElement*           ToElement()	          { return this; } ///< Cast to a more defined type. Will return null not of the requested type.	/** Walk the XML tree visiting this node and all of its children. 	*/	virtual bool Accept( TiXmlVisitor* visitor ) const;protected:	void CopyTo( TiXmlElement* target ) const;	void ClearThis();	// like clear, but initializes 'this' object as well	// Used to be public [internal use]	#ifdef TIXML_USE_STL	virtual void StreamIn( std::istream * in, TIXML_STRING * tag );	#endif	/*	[internal use]		Reads the "value" of the element -- another element, or text.		This should terminate with the current end tag.	*/	const char* ReadValue( const char* in, TiXmlParsingData* prevData, TiXmlEncoding encoding );private:	TiXmlAttributeSet attributeSet;};/**	An XML comment.*/class TiXmlComment : public TiXmlNode{public:	/// Constructs an empty comment.	TiXmlComment() : TiXmlNode( TiXmlNode::COMMENT ) {}	/// Construct a comment from text.	TiXmlComment( const char* _value ) : TiXmlNode( TiXmlNode::COMMENT ) {		SetValue( _value );	}	TiXmlComment( const TiXmlComment& );	void operator=( const TiXmlComment& base );	virtual ~TiXmlComment()	{}	/// Returns a copy of this Comment.	virtual TiXmlNode* Clone() const;	// Write this Comment to a FILE stream.	virtual void Print( FILE* cfile, int depth ) const;	/*	Attribtue parsing starts: at the ! of the !--						 returns: next char past '>'	*/	virtual const char* Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding );	virtual const TiXmlComment*  ToComment() const { return this; } ///< Cast to a more defined type. Will return null not of the requested type.	virtual TiXmlComment*  ToComment() { return this; } ///< Cast to a more defined type. Will return null not of the requested type.	/** Walk the XML tree visiting this node and all of its children. 	*/	virtual bool Accept( TiXmlVisitor* visitor ) const;protected:	void CopyTo( TiXmlComment* target ) const;	// used to be public	#ifdef TIXML_USE_STL	virtual void StreamIn( std::istream * in, TIXML_STRING * tag );	#endif//	virtual void StreamOut( TIXML_OSTREAM * out ) const;private:};/** XML text. A text node can have 2 ways to output the next. "normal" output 	and CDATA. It will default to the mode it was parsed from the XML file and	you generally want to leave it alone, but you can change the output mode with 	SetCDATA() and query it with CDATA().*/class TiXmlText : public TiXmlNode{	friend class TiXmlElement;public:	/** Constructor for text element. By default, it is treated as 		normal, encoded text. If you want it be output as a CDATA text		element, set the parameter _cdata to 'true'	*/	TiXmlText (const char * initValue ) : TiXmlNode (TiXmlNode::TEXT)	{		SetValue( initValue );		cdata = false;	}	virtual ~TiXmlText() {}	#ifdef TIXML_USE_STL	/// Constructor.	TiXmlText( const std::string& initValue ) : TiXmlNode (TiXmlNode::TEXT)	{		SetValue( initValue );		cdata = false;	}	#endif	TiXmlText( const TiXmlText& copy ) : TiXmlNode( TiXmlNode::TEXT )	{ copy.CopyTo( this ); }	void operator=( const TiXmlText& base )							 	{ base.CopyTo( this ); }	// Write this text object to a FILE stream.	virtual void Print( FILE* cfile, int depth ) const;	/// Queries whether this represents text using a CDATA section.	bool CDATA() const				{ return cdata; }	/// Turns on or off a CDATA representation of text.	void SetCDATA( bool _cdata )	{ cdata = _cdata; }	virtual const char* Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding );	virtual const TiXmlText* ToText() const { return this; } ///< Cast to a more defined type. Will return null not of the requested type.	virtual TiXmlText*       ToText()       { return this; } ///< Cast to a more defined type. Will return null not of the requested type.	/** Walk the XML tree visiting this node and all of its children. 	*/	virtual bool Accept( TiXmlVisitor* content ) const;protected :	///  [internal use] Creates a new Element and returns it.	virtual TiXmlNode* Clone() const;	void CopyTo( TiXmlText* target ) const;	bool Blank() const;	// returns true if all white space and new lines	// [internal use]	#ifdef TIXML_USE_STL	virtual void StreamIn( std::istream * in, TIXML_STRING * tag );	#endifprivate:	bool cdata;			// true if this should be input and output as a CDATA style text element};/** In correct XML the declaration is the first entry in the file.	@verbatim		<?xml version="1.0" standalone="yes"?>	@endverbatim	TinyXml will happily read or write files without a declaration,	however. There are 3 possible attributes to the declaration:	version, encoding, and standalone.	Note: In this version of the code, the attributes are	handled as special cases, not generic attributes, simply	because there can only be at most 3 and they are always the same.*/class TiXmlDeclaration : public TiXmlNode{public:	/// Construct an empty declaration.	TiXmlDeclaration()   : TiXmlNode( TiXmlNode::DECLARATION ) {}#ifdef TIXML_USE_STL	/// Constructor.	TiXmlDeclaration(	const std::string& _version,						const std::string& _encoding,						const std::string& _standalone );#endif	/// Construct.	TiXmlDeclaration(	const char* _version,						const char* _encoding,						const char* _standalone );	TiXmlDeclaration( const TiXmlDeclaration& copy );	void operator=( const TiXmlDeclaration& copy );	virtual ~TiXmlDeclaration()	{}	/// Version. Will return an empty string if none was found.	const char *Version() const			{ return version.c_str (); }	/// Encoding. Will return an empty string if none was found.	const char *Encoding() const		{ return encoding.c_str (); }	/// Is this a standalone document?	const char *Standalone() const		{ return standalone.c_str (); }	/// Creates a copy of this Declaration and returns it.	virtual TiXmlNode* Clone() const;	// Print this declaration to a FILE stream.	virtual void Print( FILE* cfile, int depth, TIXML_STRING* str ) const;	virtual void Print( FILE* cfile, int depth ) const {		Print( cfile, depth, 0 );	}	virtual const char* Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding );	virtual const TiXmlDeclaration* ToDeclaration() const { return this; } ///< Cast to a more defined type. Will return null not of the requested type.	virtual TiXmlDeclaration*       ToDeclaration()       { return this; } ///< Cast to a more defined type. Will return null not of the requested type.	/** Walk the XML tree visiting this node and all of its children. 	*/	virtual bool Accept( TiXmlVisitor* visitor ) const;protected:	void CopyTo( TiXmlDeclaration* target ) const;	// used to be public	#ifdef TIXML_USE_STL	virtual void StreamIn( std::istream * in, TIXML_STRING * tag );	#endifprivate:	TIXML_STRING version;	TIXML_STRING encoding;	TIXML_STRING standalone;};/** Any tag that tinyXml doesn't recognize is saved as an	unknown. It is a tag of text, but should not be modified.	It will be written back to the XML, unchanged, when the file	is saved.	DTD tags get thrown into TiXmlUnknowns.*/class TiXmlUnknown : public TiXmlNode{public:	TiXmlUnknown() : TiXmlNode( TiXmlNode::UNKNOWN )	{}	virtual ~TiXmlUnknown() {}	TiXmlUnknown( const TiXmlUnknown& copy ) : TiXmlNode( TiXmlNode::UNKNOWN )		{ copy.CopyTo( this ); }	void operator=( const TiXmlUnknown& copy )										{ copy.CopyTo( this ); }	/// Creates a copy of this Unknown and returns it.	virtual TiXmlNode* Clone() const;	// Print this Unknown to a FILE stream.	virtual void Print( FILE* cfile, int depth ) const;	virtual const char* Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding );	virtual const TiXmlUnknown*     ToUnknown()     const { return this; } ///< Cast to a more defined type. Will return null not of the requested type.	virtual TiXmlUnknown*           ToUnknown()	    { return this; } ///< Cast to a more defined type. Will return null not of the requested type.	/** Walk the XML tree visiting this node and all of its children. 	*/	virtual bool Accept( TiXmlVisitor* content ) const;protected:	void CopyTo( TiXmlUnknown* target ) const;	#ifdef TIXML_USE_STL	virtual void StreamIn( std::istream * in, TIXML_STRING * tag );	#endifprivate:};/** Always the top level node. A document binds together all the	XML pieces. It can be saved, loaded, and printed to the screen.	The 'value' of a document node is the xml file name.*/class TiXmlDocument : public TiXmlNode{public:	/// Create an empty document, that has no name.	TiXmlDocument();	/// Create a document with a name. The name of the document is also the filename of the xml.	TiXmlDocument( const char * documentName );	#ifdef TIXML_USE_STL	/// Constructor.	TiXmlDocument( const std::string& documentName );	#endif	TiXmlDocument( const TiXmlDocument& copy );	void operator=( const TiXmlDocument& copy );	virtual ~TiXmlDocument() {}	/** Load a file using the current document value.		Returns true if successful. Will delete any existing		document data before loading.	*/	bool LoadFile( TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING );	/// Save a file using the current document value. Returns true if successful.	bool SaveFile() const;	/// Load a file using the given filename. Returns true if successful.	bool LoadFile( const char * filename, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING );	/// Save a file using the given filename. Returns true if successful.	bool SaveFile( const char * filename ) const;	/** Load a file using the given FILE*. Returns true if successful. Note that this method		doesn't stream - the entire object pointed at by the FILE*		will be interpreted as an XML file. TinyXML doesn't stream in XML from the current		file location. Streaming may be added in the future.	*/	bool LoadFile( FILE*, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING );	/// Save a file using the given FILE*. Returns true if successful.	bool SaveFile( FILE* ) const;	#ifdef TIXML_USE_STL	bool LoadFile( const std::string& filename, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING )			///< STL std::string version.	{//		StringToBuffer f( filename );//		return ( f.buffer && LoadFile( f.buffer, encoding ));		return LoadFile( filename.c_str(), encoding );	}	bool SaveFile( const std::string& filename ) const		///< STL std::string version.	{//		StringToBuffer f( filename );//		return ( f.buffer && SaveFile( f.buffer ));		return SaveFile( filename.c_str() );	}	#endif	/** Parse the given null terminated block of xml data. Passing in an encoding to this		method (either TIXML_ENCODING_LEGACY or TIXML_ENCODING_UTF8 will force TinyXml		to use that encoding, regardless of what TinyXml might otherwise try to detect.	*/	virtual const char* Parse( const char* p, TiXmlParsingData* data = 0, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING );	/** Get the root element -- the only top level element -- of the document.		In well formed XML, there should only be one. TinyXml is tolerant of		multiple elements at the document level.	*/	const TiXmlElement* RootElement() const		{ return FirstChildElement(); }	TiXmlElement* RootElement()					{ return FirstChildElement(); }

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91美女精品福利| 精品无人码麻豆乱码1区2区| 亚洲摸摸操操av| 天堂一区二区在线| 国产一区 二区 三区一级| 在线欧美日韩精品| 26uuu久久天堂性欧美| 亚洲一区二区三区中文字幕在线| 久久99国产精品免费网站| 91成人免费在线| 国产精品毛片久久久久久| 日韩精品一级中文字幕精品视频免费观看 | 国产精品一区二区果冻传媒| 在线中文字幕不卡| 亚洲色图都市小说| 成人午夜视频在线观看| 精品欧美久久久| 日本亚洲免费观看| 7777精品伊人久久久大香线蕉的 | 国产成人综合精品三级| 欧美欧美欧美欧美| 亚洲高清一区二区三区| 91网上在线视频| 国产免费成人在线视频| 久久99精品一区二区三区| 欧美日产在线观看| 亚洲制服欧美中文字幕中文字幕| 粉嫩绯色av一区二区在线观看| 亚洲精品在线三区| 久久99热99| 日韩欧美国产精品| 激情图片小说一区| 91精品国产综合久久婷婷香蕉 | 精品国产一二三区| 看国产成人h片视频| 欧美一级高清大全免费观看| 奇米综合一区二区三区精品视频| 欧美欧美午夜aⅴ在线观看| 污片在线观看一区二区| 在线播放中文字幕一区| 日本成人在线不卡视频| 日韩欧美在线123| 美女任你摸久久| 精品国产91乱码一区二区三区 | 欧美在线视频全部完| 亚洲同性同志一二三专区| 99久久99久久综合| 亚洲国产综合91精品麻豆| 欧美三级中文字幕| 日韩成人一区二区三区在线观看| 欧美精品久久99久久在免费线 | 国产成人av影院| 中文字幕欧美区| 99久久精品一区| 一区二区三区精密机械公司| 欧美日韩另类一区| 九九国产精品视频| 国产精品久久国产精麻豆99网站 | 国产精品久久久久久久久久免费看 | 午夜精品福利一区二区三区蜜桃| 欧美丰满嫩嫩电影| 久热成人在线视频| 中文子幕无线码一区tr| 色丁香久综合在线久综合在线观看| 五月天激情综合网| 国产午夜精品久久| 欧美亚洲愉拍一区二区| 国产成人精品一区二| 国产一区二区三区免费| 在线观看一区不卡| 国产欧美视频一区二区| av午夜一区麻豆| 日韩成人一级片| 中文字幕电影一区| 在线不卡中文字幕| 成人黄色在线视频| 午夜电影网亚洲视频| 国产欧美日韩视频在线观看| 欧美性受xxxx黑人xyx| 久久精品国产网站| 亚洲激情成人在线| 久久亚区不卡日本| 欧美亚洲综合网| 国产不卡在线视频| 青青草97国产精品免费观看无弹窗版 | 欧美军同video69gay| 中文字幕av不卡| 欧美亚洲愉拍一区二区| 国产精品久久三区| 亚洲精品一线二线三线| 香蕉成人啪国产精品视频综合网| 欧美不卡一二三| 欧美午夜电影一区| 99视频在线精品| 久久av中文字幕片| 亚洲成人动漫在线观看| ㊣最新国产の精品bt伙计久久| 日韩欧美视频在线| 欧美色网站导航| 97国产一区二区| 国产成人午夜视频| 久久精品国产99国产| 亚洲精品一二三区| 成人欧美一区二区三区小说| 精品日韩在线观看| 欧美不卡一区二区三区| 欧美一三区三区四区免费在线看| 色婷婷综合久色| 成人黄页在线观看| 岛国精品一区二区| 欧美性色黄大片| 九一久久久久久| 日韩vs国产vs欧美| 午夜视频一区二区三区| 亚洲日韩欧美一区二区在线| 中文字幕不卡在线播放| 久久在线观看免费| 精品美女在线观看| 欧美大片国产精品| 久久女同性恋中文字幕| 久久久久国产精品麻豆 | 免费在线观看日韩欧美| 日韩成人午夜精品| 久久精品国产**网站演员| 奇米影视一区二区三区| 日本不卡高清视频| 日韩精品一二三四| 极品尤物av久久免费看| 国产主播一区二区| 成人午夜视频在线| 一本一道综合狠狠老| 色婷婷av一区二区三区之一色屋| 91行情网站电视在线观看高清版| 在线观看一区二区视频| 在线91免费看| 日韩午夜激情av| 久久精品人人做人人综合| 国产精品日韩成人| 亚洲在线视频一区| 另类小说综合欧美亚洲| 国产黄色91视频| 色综合天天综合网国产成人综合天 | 亚洲精品国久久99热| 亚洲成人综合视频| 国产一本一道久久香蕉| 97久久精品人人澡人人爽| 欧美日韩国产在线观看| 精品国产一区二区三区久久影院 | 日韩在线a电影| 国内精品久久久久影院一蜜桃| youjizz久久| 国产成人久久精品77777最新版本| 欧美一区二区免费视频| 成人免费高清视频| 欧美午夜一区二区三区免费大片| 3atv一区二区三区| 久久综合久久综合九色| 国产精品国产三级国产普通话蜜臀 | 国产精品99久久久久| 本田岬高潮一区二区三区| 欧美一a一片一级一片| 欧美一区二区日韩| 综合婷婷亚洲小说| 亚洲国产精品天堂| 不卡一区在线观看| 精品噜噜噜噜久久久久久久久试看| 久久久精品国产免大香伊| 亚洲精品欧美专区| 蜜臀99久久精品久久久久久软件| 不卡区在线中文字幕| 91视视频在线观看入口直接观看www | 精品国产3级a| 午夜不卡av免费| 成人av第一页| 精品福利av导航| 一区二区在线观看av| 欧美日韩一区二区欧美激情| 国产午夜三级一区二区三| 亚洲欧美另类久久久精品2019| 韩国成人在线视频| 欧美在线999| 国产精品福利影院| 亚洲mv在线观看| eeuss国产一区二区三区| 欧美成人免费网站| 亚洲综合在线第一页| 懂色av中文字幕一区二区三区| 粉嫩蜜臀av国产精品网站| 日韩三级视频中文字幕| 亚洲www啪成人一区二区麻豆| 国产精品888| www精品美女久久久tv| 亚洲国产精品黑人久久久| 日韩国产成人精品| 欧美性色欧美a在线播放| 日本一区二区成人在线| 另类人妖一区二区av| 欧美日韩亚洲综合在线| 国产成人三级在线观看| av不卡一区二区三区|