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

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

?? tinyxml.h

?? wince設置MUTE,設置設備靜音的代碼CE下。
?? H
?? 第 1 頁 / 共 5 頁
字號:
		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(); }	/** If an error occurs, Error will be set to true. Also,		- The ErrorId() will contain the integer identifier of the error (not generally useful)		- The ErrorDesc() method will return the name of the error. (very useful)		- The ErrorRow() and ErrorCol() will return the location of the error (if known)	*/		bool Error() const						{ return error; }	/// Contains a textual (english) description of the error if one occurs.	const char * ErrorDesc() const	{ return errorDesc.c_str (); }	/** Generally, you probably want the error string ( ErrorDesc() ). But if you		prefer the ErrorId, this function will fetch it.	*/	int ErrorId()	const				{ return errorId; }	/** Returns the location (if known) of the error. The first column is column 1, 		and the first row is row 1. A value of 0 means the row and column wasn't applicable		(memory errors, for example, have no row/column) or the parser lost the error. (An		error in the error reporting, in that case.)		@sa SetTabSize, Row, Column	*/	int ErrorRow() const	{ return errorLocation.row+1; }	int ErrorCol() const	{ return errorLocation.col+1; }	///< The column where the error occured. See ErrorRow()	/** SetTabSize() allows the error reporting functions (ErrorRow() and ErrorCol())		to report the correct values for row and column. It does not change the output		or input in any way.				By calling this method, with a tab size		greater than 0, the row and column of each node and attribute is stored		when the file is loaded. Very useful for tracking the DOM back in to		the source file.		The tab size is required for calculating the location of nodes. If not		set, the default of 4 is used. The tabsize is set per document. Setting		the tabsize to 0 disables row/column tracking.		Note that row and column tracking is not supported when using operator>>.		The tab size needs to be enabled before the parse or load. Correct usage:		@verbatim		TiXmlDocument doc;		doc.SetTabSize( 8 );		doc.Load( "myfile.xml" );		@endverbatim		@sa Row, Column	*/	void SetTabSize( int _tabsize )		{ tabsize = _tabsize; }	int TabSize() const	{ return tabsize; }	/** If you have handled the error, it can be reset with this call. The error		state is automatically cleared if you Parse a new XML block.	*/	void ClearError()						{	error = false; 												errorId = 0; 												errorDesc = ""; 												errorLocation.row = errorLocation.col = 0; 												//errorLocation.last = 0; 											}	/** Write the document to standard out using formatted printing ("pretty print"). */	void Print() const						{ Print( stdout, 0 ); }	/* Write the document to a string using formatted printing ("pretty print"). This		will allocate a character array (new char[]) and return it as a pointer. The		calling code pust call delete[] on the return char* to avoid a memory leak.	*/	//char* PrintToMemory() const; 	/// Print this Document to a FILE stream.	virtual void Print( FILE* cfile, int depth = 0 ) const;	// [internal use]	void SetError( int err, const char* errorLocation, TiXmlParsingData* prevData, TiXmlEncoding encoding );	virtual const TiXmlDocument*    ToDocument()    const { return this; } ///< Cast to a more defined type. Will return null not of the requested type.	virtual TiXmlDocument*          ToDocument()          { 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]	virtual TiXmlNode* Clone() const;	#ifdef TIXML_USE_STL	virtual void StreamIn( std::istream * in, TIXML_STRING * tag );	#endifprivate:	void CopyTo( TiXmlDocument* target ) const;	bool error;	int  errorId;	TIXML_STRING errorDesc;	int tabsize;	TiXmlCursor errorLocation;	bool useMicrosoftBOM;		// the UTF-8 BOM were found when read. Note this, and try to write.};/**	A TiXmlHandle is a class that wraps a node pointer with null checks; this is	an incredibly useful thing. Note that TiXmlHandle is not part of the TinyXml	DOM structure. It is a separate utility class.	Take an example:	@verbatim	<Document>		<Element attributeA = "valueA">			<Child attributeB = "value1" />			<Child attributeB = "value2" />		</Element>	<Document>	@endverbatim	Assuming you want the value of "attributeB" in the 2nd "Child" element, it's very 	easy to write a *lot* of code that looks like:	@verbatim	TiXmlElement* root = document.FirstChildElement( "Document" );	if ( root )	{		TiXmlElement* element = root->FirstChildElement( "Element" );		if ( element )		{			TiXmlElement* child = element->FirstChildElement( "Child" );			if ( child )			{				TiXmlElement* child2 = child->NextSiblingElement( "Child" );				if ( child2 )				{					// Finally do something useful.	@endverbatim	And that doesn't even cover "else" cases. TiXmlHandle addresses the verbosity	of such code. A TiXmlHandle checks for null	pointers so it is perfectly safe 	and correct to use:	@verbatim	TiXmlHandle docHandle( &document );	TiXmlElement* child2 = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).Child( "Child", 1 ).ToElement();	if ( child2 )	{		// do something useful	@endverbatim	Which is MUCH more concise and useful.	It is also safe to copy handles - internally they are nothing more than node pointers.	@verbatim	TiXmlHandle handleCopy = handle;	@endverbatim	What they should not be used for is iteration:	@verbatim	int i=0; 	while ( true )	{		TiXmlElement* child = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).Child( "Child", i ).ToElement();		if ( !child )			break;		// do something		++i;	}	@endverbatim	It seems reasonable, but it is in fact two embedded while loops. The Child method is 	a linear walk to find the element, so this code would iterate much more than it needs 	to. Instead, prefer:	@verbatim	TiXmlElement* child = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).FirstChild( "Child" ).ToElement();	for( child; child; child=child->NextSiblingElement() )	{		// do something	}	@endverbatim*/class TiXmlHandle{public:	/// Create a handle from any node (at any depth of the tree.) This can be a null pointer.	TiXmlHandle( TiXmlNode* _node )					{ this->node = _node; }	/// Copy constructor	TiXmlHandle( const TiXmlHandle& ref )			{ this->node = ref.node; }	TiXmlHandle operator=( const TiXmlHandle& ref ) { this->node = ref.node; return *this; }	/// Return a handle to the first child node.	TiXmlHandle FirstChild() const;	/// Return a handle to the first child node with the given name.	TiXmlHandle FirstChild( const char * value ) const;	/// Return a handle to the first child element.	TiXmlHandle FirstChildElement() const;	/// Return a handle to the first child element with the given name.	TiXmlHandle FirstChildElement( const char * value ) const;	/** Return a handle to the "index" child with the given name. 		The first child is 0, the second 1, etc.	*/	TiXmlHandle Child( const char* value, int index ) const;	/** Return a handle to the "index" child. 		The first child is 0, the second 1, etc.	*/	TiXmlHandle Child( int index ) const;	/** Return a handle to the "index" child element with the given name. 		The first child element is 0, the second 1, etc. Note that only TiXmlElements		are indexed: other types are not counted.	*/	TiXmlHandle ChildElement( const char* value, int index ) const;	/** Return a handle to the "index" child element. 		The first child element is 0, the second 1, etc. Note that only TiXmlElements		are indexed: other types are not counted.	*/	TiXmlHandle ChildElement( int index ) const;	#ifdef TIXML_USE_STL	TiXmlHandle FirstChild( const std::string& _value ) const				{ return FirstChild( _value.c_str() ); }	TiXmlHandle FirstChildElement( const std::string& _value ) const		{ return FirstChildElement( _value.c_str() ); }	TiXmlHandle Child( const std::string& _value, int index ) const			{ return Child( _value.c_str(), index ); }	TiXmlHandle ChildElement( const std::string& _value, int index ) const	{ return ChildElement( _value.c_str(), index ); }	#endif	/** Return the handle as a TiXmlNode. This may return null.	*/	TiXmlNode* ToNode() const			{ return node; } 	/** Return the handle as a TiXmlElement. This may return null.	*/	TiXmlElement* ToElement() const		{ return ( ( node && node->ToElement() ) ? node->ToElement() : 0 ); }	/**	Return the handle as a TiXmlText. This may return null.	*/	TiXmlText* ToText() const			{ return ( ( node && node->ToText() ) ? node->ToText() : 0 ); }	/** Return the handle as a TiXmlUnknown. This may return null.	*/	TiXmlUnknown* ToUnknown() const		{ return ( ( node && node->ToUnknown() ) ? node->ToUnknown() : 0 ); }	/** @deprecated use ToNode. 		Return the handle as a TiXmlNode. This may return null.	*/	TiXmlNode* Node() const			{ return ToNode(); } 	/** @deprecated use ToElement. 		Return the handle as a TiXmlElement. This may return null.	*/	TiXmlElement* Element() const	{ return ToElement(); }	/**	@deprecated use ToText()		Return the handle as a TiXmlText. This may return null.	*/	TiXmlText* Text() const			{ return ToText(); }	/** @deprecated use ToUnknown()		Return the handle as a TiXmlUnknown. This may return null.	*/	TiXmlUnknown* Unknown() const	{ return ToUnknown(); }private:	TiXmlNode* node;};/** Print to memory functionality. The TiXmlPrinter is useful when you need to:	-# Print to memory (especially in non-STL mode)	-# Control formatting (line endings, etc.)	When constructed, the TiXmlPrinter is in its default "pretty printing" mode.	Before calling Accept() you can call methods to control the printing	of the XML document. After TiXmlNode::Accept() is called, the printed document can	be accessed via the CStr(), Str(), and Size() methods.	TiXmlPrinter uses the Visitor API.	@verbatim	TiXmlPrinter printer;	printer.SetIndent( "\t" );	doc.Accept( &printer );	fprintf( stdout, "%s", printer.CStr() );	@endverbatim*/class TiXmlPrinter : public TiXmlVisitor{public:	TiXmlPrinter() : depth( 0 ), simpleTextPrint( false ),					 buffer(), indent( "    " ), lineBreak( "\n" ) {}	virtual bool VisitEnter( const TiXmlDocument& doc );	virtual bool VisitExit( const TiXmlDocument& doc );	virtual bool VisitEnter( const TiXmlElement& element, const TiXmlAttribute* firstAttribute );	virtual bool VisitExit( const TiXmlElement& element );	virtual bool Visit( const TiXmlDeclaration& declaration );	virtual bool Visit( const TiXmlText& text );	virtual bool Visit( const TiXmlComment& comment );	virtual bool Visit( const TiXmlUnknown& unknown );	/** Set the indent characters for printing. By default 4 spaces		but tab (\t) is also useful, or null/empty string for no indentation.	*/	void SetIndent( const char* _indent )			{ indent = _indent ? _indent : "" ; }	/// Query the indention string.	const char* Indent()							{ return indent.c_str(); }	/** Set the line breaking string. By default set to newline (\n). 		Some operating systems prefer other characters, or can be		set to the null/empty string for no indenation.	*/	void SetLineBreak( const char* _lineBreak )		{ lineBreak = _lineBreak ? _lineBreak : ""; }	/// Query the current line breaking string.	const char* LineBreak()							{ return lineBreak.c_str(); }	/** Switch over to "stream printing" which is the most dense formatting without 		linebreaks. Common when the XML is needed for network transmission.	*/	void SetStreamPrinting()						{ indent = "";													  lineBreak = "";													}		/// Return the result.	const char* CStr()								{ return buffer.c_str(); }	/// Return the length of the result string.	size_t Size()									{ return buffer.size(); }	#ifdef TIXML_USE_STL	/// Return the result.	const std::string& Str()						{ return buffer; }	#endifprivate:	void DoIndent()	{		for( int i=0; i<depth; ++i )			buffer += indent;	}	void DoLineBreak() {		buffer += lineBreak;	}	int depth;	bool simpleTextPrint;	TIXML_STRING buffer;	TIXML_STRING indent;	TIXML_STRING lineBreak;};#ifdef _MSC_VER#pragma warning( pop )#endif#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩一区二区三区免费看| 久久99久国产精品黄毛片色诱| av在线这里只有精品| 久久―日本道色综合久久| 国产精品一区在线观看你懂的| 日韩美女视频在线| 国产精品综合一区二区三区| 久久久精品天堂| 99久久婷婷国产| 亚洲风情在线资源站| 欧美大胆人体bbbb| 成人午夜在线播放| 亚洲一区二区不卡免费| 日韩一区二区精品在线观看| 国产酒店精品激情| 中文字幕在线视频一区| 欧美在线影院一区二区| 日本午夜一本久久久综合| 国产色产综合产在线视频| 99精品欧美一区| 天堂影院一区二区| 欧美国产在线观看| 欧美日韩国产一级| 国产精品99久久久久久有的能看| 成人免费在线视频| 欧美一区二视频| 成人爽a毛片一区二区免费| 亚洲免费观看高清完整版在线观看 | 精品国产污污免费网站入口 | 一区二区三区免费观看| 欧美日产在线观看| 国产成人免费视频网站 | 欧美国产激情一区二区三区蜜月| 在线观看欧美日本| 国产寡妇亲子伦一区二区| 尤物av一区二区| 国产欧美精品一区二区色综合| 欧美日韩国产另类不卡| av一区二区三区四区| 免费观看成人鲁鲁鲁鲁鲁视频| 日韩一区在线看| xnxx国产精品| 欧美久久久影院| 福利电影一区二区| 免费成人在线观看| 性做久久久久久| 欧美韩国日本一区| 精品久久人人做人人爰| 欧美日韩综合在线免费观看| av一本久道久久综合久久鬼色| 蜜桃视频一区二区| 亚洲成a人片在线观看中文| 亚洲色图20p| 国产精品美女久久久久久久久久久| 884aa四虎影成人精品一区| 色屁屁一区二区| av综合在线播放| 国产高清在线精品| 国产一区二区三区日韩| 麻豆精品一区二区三区| 亚洲成a人片在线观看中文| 亚洲蜜桃精久久久久久久| 中文字幕制服丝袜成人av| 日本一区二区免费在线观看视频| www久久久久| 欧美精品一区二区高清在线观看| 欧美丰满少妇xxxbbb| 欧美久久久久久蜜桃| 欧美日韩国产免费| 这里只有精品免费| 91精品国产综合久久久久久| 欧美另类变人与禽xxxxx| 欧美日韩精品一区二区三区蜜桃 | 国产清纯白嫩初高生在线观看91| 欧美成人一区二区| 日韩精品一区二区三区中文不卡| 日韩一级免费观看| 精品国免费一区二区三区| 欧美www视频| 国产亚洲一区二区三区| 久久久久久久久久久久久夜| 精品国产91久久久久久久妲己| 欧美va日韩va| 久久精品人人做人人综合| 久久久国产精品麻豆| 中文字幕不卡在线播放| 亚洲免费观看视频| 亚洲最新视频在线观看| 视频在线观看国产精品| 蜜臀av一区二区| 国产乱子伦一区二区三区国色天香 | 欧美日韩午夜在线| 日韩久久久久久| 国产视频一区二区三区在线观看| 国产精品国产三级国产普通话三级| 国产精品久久久久久久久快鸭 | 北条麻妃国产九九精品视频| 99精品久久只有精品| 欧美在线免费观看亚洲| 欧美一级国产精品| 国产喂奶挤奶一区二区三区| 国产精品国产精品国产专区不蜜| 亚洲免费在线视频一区 二区| 午夜精品在线看| 精品一二三四在线| 99精品视频在线免费观看| 精品视频一区二区不卡| 欧美精品一区二区三区高清aⅴ | 在线亚洲免费视频| 欧美一区午夜视频在线观看| 国产亚洲欧美色| 一区二区三区在线免费播放| 日本系列欧美系列| av在线一区二区三区| 在线不卡中文字幕| 久久久久久久精| 一级特黄大欧美久久久| 九色|91porny| 在线观看中文字幕不卡| 久久人人超碰精品| 亚洲成人资源网| 风间由美性色一区二区三区| 欧美精品v国产精品v日韩精品| 久久综合九色综合97婷婷女人| 伊人开心综合网| 国产精品夜夜嗨| 欧美一区二区视频观看视频 | 一区二区三区四区高清精品免费观看| 日韩av在线免费观看不卡| www.色综合.com| 欧美成人video| 亚洲午夜av在线| av网站一区二区三区| 精品成人a区在线观看| 亚洲一区视频在线观看视频| 成人午夜大片免费观看| 日韩欧美一区二区三区在线| 一区二区三区欧美| 成人黄色小视频| 久久尤物电影视频在线观看| 亚洲大片一区二区三区| aaa亚洲精品| 久久久亚洲午夜电影| 麻豆久久久久久| 91精品国产综合久久福利软件| 一区二区三区在线高清| 99精品欧美一区二区三区小说 | 欧美一级久久久久久久大片| 亚洲综合男人的天堂| 成人18视频在线播放| 欧美国产丝袜视频| 国产成人免费在线| 久久蜜桃av一区二区天堂| 美国毛片一区二区| 欧美精品色综合| 亚洲福利视频一区二区| 欧美性猛交xxxxxxxx| 日韩一区在线免费观看| 99视频在线精品| 国产精品久久久久久久久果冻传媒| 国产成人午夜高潮毛片| 日韩一级视频免费观看在线| 青草av.久久免费一区| 91精品国产综合久久精品图片 | 精品成人一区二区三区四区| 九九九精品视频| 久久一区二区三区四区| 国产精品91xxx| 国产精品私人影院| 成人av免费网站| 亚洲久本草在线中文字幕| 99re免费视频精品全部| 亚洲精品视频免费看| 欧美肥大bbwbbw高潮| 午夜精品久久久久久久久久久| 欧美私人免费视频| 五月婷婷综合网| 欧美一级爆毛片| 狠狠色2019综合网| 国产欧美一区二区在线| 成人91在线观看| 一区二区三区鲁丝不卡| 欧美剧情片在线观看| 久久精品国产**网站演员| 久久久精品国产免费观看同学| 国产成人免费在线| 亚洲精品乱码久久久久久黑人 | aaa国产一区| 亚洲第一在线综合网站| 日韩欧美亚洲国产另类| 国产精品影音先锋| 亚洲人成在线观看一区二区| 欧美色图12p| 激情都市一区二区| 国产精品久久久久久久久免费桃花| 在线亚洲一区二区| 美女一区二区视频| 国产精品传媒入口麻豆| 欧美另类videos死尸| 国产精品888|