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

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

?? tinyxml.h

?? tinyxml project for Visual Studio 2008. A small xml parser, the result is lib file for embedded ARM
?? H
?? 第 1 頁 / 共 5 頁
字號(hào):
		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		interface versus any other.)		The interface has been based on ideas from:		- http://www.saxproject.org/		- http://c2.com/cgi/wiki?HierarchicalVisitorPattern 		Which are both good references for "visiting".		An example of using Accept():		@verbatim		TiXmlPrinter printer;		tinyxmlDoc.Accept( &printer );		const char* xmlcstr = printer.CStr();		@endverbatim	*/	virtual bool Accept( TiXmlVisitor* visitor ) const = 0;protected:	TiXmlNode( NodeType _type );	// Copy to the allocated object. Shared functionality between Clone, Copy constructor,	// and the assignment operator.	void CopyTo( TiXmlNode* target ) const;	#ifdef TIXML_USE_STL	    // The real work of the input operator.	virtual void StreamIn( std::istream* in, TIXML_STRING* tag ) = 0;	#endif	// Figure out what is at *p, and parse it. Returns null if it is not an xml node.	TiXmlNode* Identify( const char* start, TiXmlEncoding encoding );	TiXmlNode*		parent;	NodeType		type;	TiXmlNode*		firstChild;	TiXmlNode*		lastChild;	TIXML_STRING	value;	TiXmlNode*		prev;	TiXmlNode*		next;private:	TiXmlNode( const TiXmlNode& );				// not implemented.	void operator=( const TiXmlNode& base );	// not allowed.};/** An attribute is a name-value pair. Elements have an arbitrary	number of attributes, each with a unique name.	@note The attributes are not TiXmlNodes, since they are not		  part of the tinyXML document object model. There are other		  suggested ways to look at this problem.*/class TiXmlAttribute : public TiXmlBase{	friend class TiXmlAttributeSet;public:	/// Construct an empty attribute.	TiXmlAttribute() : TiXmlBase()	{		document = 0;		prev = next = 0;	}	#ifdef TIXML_USE_STL	/// std::string constructor.	TiXmlAttribute( const std::string& _name, const std::string& _value )	{		name = _name;		value = _value;		document = 0;		prev = next = 0;	}	#endif	/// Construct an attribute with a name and value.	TiXmlAttribute( const char * _name, const char * _value )	{		name = _name;		value = _value;		document = 0;		prev = next = 0;	}	const char*		Name()  const		{ return name.c_str(); }		///< Return the name of this attribute.	const char*		Value() const		{ return value.c_str(); }		///< Return the value of this attribute.	#ifdef TIXML_USE_STL	const std::string& ValueStr() const	{ return value; }				///< Return the value of this attribute.	#endif	int				IntValue() const;									///< Return the value of this attribute, converted to an integer.	double			DoubleValue() const;								///< Return the value of this attribute, converted to a double.	// Get the tinyxml string representation	const TIXML_STRING& NameTStr() const { return name; }	/** QueryIntValue examines the value string. It is an alternative to the		IntValue() method with richer error checking.		If the value is an integer, it is stored in 'value' and 		the call returns TIXML_SUCCESS. If it is not		an integer, it returns TIXML_WRONG_TYPE.		A specialized but useful call. Note that for success it returns 0,		which is the opposite of almost all other TinyXml calls.	*/	int QueryIntValue( int* _value ) const;	/// QueryDoubleValue examines the value string. See QueryIntValue().	int QueryDoubleValue( double* _value ) const;	void SetName( const char* _name )	{ name = _name; }				///< Set the name of this attribute.	void SetValue( const char* _value )	{ value = _value; }				///< Set the value.	void SetIntValue( int _value );										///< Set the value from an integer.	void SetDoubleValue( double _value );								///< Set the value from a double.    #ifdef TIXML_USE_STL	/// STL std::string form.	void SetName( const std::string& _name )	{ name = _name; }		/// STL std::string form.		void SetValue( const std::string& _value )	{ value = _value; }	#endif	/// Get the next sibling attribute in the DOM. Returns null at end.	const TiXmlAttribute* Next() const;	TiXmlAttribute* Next() {		return const_cast< TiXmlAttribute* >( (const_cast< const TiXmlAttribute* >(this))->Next() ); 	}	/// Get the previous sibling attribute in the DOM. Returns null at beginning.	const TiXmlAttribute* Previous() const;	TiXmlAttribute* Previous() {		return const_cast< TiXmlAttribute* >( (const_cast< const TiXmlAttribute* >(this))->Previous() ); 	}	bool operator==( const TiXmlAttribute& rhs ) const { return rhs.name == name; }	bool operator<( const TiXmlAttribute& rhs )	 const { return name < rhs.name; }	bool operator>( const TiXmlAttribute& rhs )  const { return name > rhs.name; }	/*	Attribute parsing starts: first letter of the name						 returns: the next char after the value end quote	*/	virtual const char* Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding );	// Prints this Attribute to a FILE stream.	virtual void Print( FILE* cfile, int depth ) const {		Print( cfile, depth, 0 );	}	void Print( FILE* cfile, int depth, TIXML_STRING* str ) const;	// [internal use]	// Set the document pointer so the attribute can report errors.	void SetDocument( TiXmlDocument* doc )	{ document = doc; }private:	TiXmlAttribute( const TiXmlAttribute& );				// not implemented.	void operator=( const TiXmlAttribute& base );	// not allowed.	TiXmlDocument*	document;	// A pointer back to a document, for error reporting.	TIXML_STRING name;	TIXML_STRING value;	TiXmlAttribute*	prev;	TiXmlAttribute*	next;};/*	A class used to manage a group of attributes.	It is only used internally, both by the ELEMENT and the DECLARATION.		The set can be changed transparent to the Element and Declaration	classes that use it, but NOT transparent to the Attribute	which has to implement a next() and previous() method. Which makes	it a bit problematic and prevents the use of STL.	This version is implemented with circular lists because:		- I like circular lists		- it demonstrates some independence from the (typical) doubly linked list.*/class TiXmlAttributeSet{public:	TiXmlAttributeSet();	~TiXmlAttributeSet();	void Add( TiXmlAttribute* attribute );	void Remove( TiXmlAttribute* attribute );	const TiXmlAttribute* First()	const	{ return ( sentinel.next == &sentinel ) ? 0 : sentinel.next; }	TiXmlAttribute* First()					{ return ( sentinel.next == &sentinel ) ? 0 : sentinel.next; }	const TiXmlAttribute* Last() const		{ return ( sentinel.prev == &sentinel ) ? 0 : sentinel.prev; }	TiXmlAttribute* Last()					{ return ( sentinel.prev == &sentinel ) ? 0 : sentinel.prev; }	const TiXmlAttribute*	Find( const char* _name ) const;	TiXmlAttribute*	Find( const char* _name ) {		return const_cast< TiXmlAttribute* >( (const_cast< const TiXmlAttributeSet* >(this))->Find( _name ) );	}	#ifdef TIXML_USE_STL	const TiXmlAttribute*	Find( const std::string& _name ) const;	TiXmlAttribute*	Find( const std::string& _name ) {		return const_cast< TiXmlAttribute* >( (const_cast< const TiXmlAttributeSet* >(this))->Find( _name ) );	}	#endifprivate:	//*ME:	Because of hidden/disabled copy-construktor in TiXmlAttribute (sentinel-element),	//*ME:	this class must be also use a hidden/disabled copy-constructor !!!	TiXmlAttributeSet( const TiXmlAttributeSet& );	// not allowed	void operator=( const TiXmlAttributeSet& );	// not allowed (as TiXmlAttribute)	TiXmlAttribute sentinel;};/** The element is a container class. It has a value, the element name,	and can contain other elements, text, comments, and unknowns.	Elements also contain an arbitrary number of attributes.*/class TiXmlElement : public TiXmlNode{public:	/// Construct an element.	TiXmlElement (const char * in_value);	#ifdef TIXML_USE_STL	/// std::string constructor.	TiXmlElement( const std::string& _value );	#endif	TiXmlElement( const TiXmlElement& );	void operator=( const TiXmlElement& base );	virtual ~TiXmlElement();	/** Given an attribute name, Attribute() returns the value		for the attribute of that name, or null if none exists.	*/	const char* Attribute( const char* name ) const;	/** Given an attribute name, Attribute() returns the value		for the attribute of that name, or null if none exists.		If the attribute exists and can be converted to an integer,		the integer value will be put in the return 'i', if 'i'		is non-null.	*/	const char* Attribute( const char* name, int* i ) const;	/** Given an attribute name, Attribute() returns the value		for the attribute of that name, or null if none exists.		If the attribute exists and can be converted to an double,		the double value will be put in the return 'd', if 'd'		is non-null.	*/	const char* Attribute( const char* name, double* d ) const;	/** QueryIntAttribute examines the attribute - it is an alternative to the		Attribute() method with richer error checking.		If the attribute is an integer, it is stored in 'value' and 		the call returns TIXML_SUCCESS. If it is not		an integer, it returns TIXML_WRONG_TYPE. If the attribute		does not exist, then TIXML_NO_ATTRIBUTE is returned.	*/		int QueryIntAttribute( const char* name, int* _value ) const;	/// QueryDoubleAttribute examines the attribute - see QueryIntAttribute().	int QueryDoubleAttribute( const char* name, double* _value ) const;	/// QueryFloatAttribute examines the attribute - see QueryIntAttribute().	int QueryFloatAttribute( const char* name, float* _value ) const {		double d;		int result = QueryDoubleAttribute( name, &d );		if ( result == TIXML_SUCCESS ) {			*_value = (float)d;		}		return result;	}    #ifdef TIXML_USE_STL	/** Template form of the attribute query which will try to read the		attribute into the specified type. Very easy, very powerful, but		be careful to make sure to call this with the correct type.		@return TIXML_SUCCESS, TIXML_WRONG_TYPE, or TIXML_NO_ATTRIBUTE	*/	template< typename T > int QueryValueAttribute( const std::string& name, T* outValue ) const	{		const TiXmlAttribute* node = attributeSet.Find( name );		if ( !node )			return TIXML_NO_ATTRIBUTE;		std::stringstream sstream( node->ValueStr() );		sstream >> *outValue;		if ( !sstream.fail() )			return TIXML_SUCCESS;		return TIXML_WRONG_TYPE;	}	#endif	/** Sets an attribute of name to a given value. The attribute		will be created if it does not exist, or changed if it does.	*/	void SetAttribute( const char* name, const char * _value );    #ifdef TIXML_USE_STL	const std::string* Attribute( const std::string& name ) const;	const std::string* Attribute( const std::string& name, int* i ) const;	const std::string* Attribute( const std::string& name, double* d ) const;	int QueryIntAttribute( const std::string& name, int* _value ) const;	int QueryDoubleAttribute( const std::string& name, double* _value ) const;	/// STL std::string form.	void SetAttribute( const std::string& name, const std::string& _value );	///< STL std::string form.	void SetAttribute( const std::string& name, int _value );	#endif	/** Sets an attribute of name to a given value. The attribute		will be created if it does not exist, or changed if it does.	*/	void SetAttribute( const char * name, int value );	/** Sets an attribute of name to a given value. The attribute		will be created if it does not exist, or changed if it does.	*/	void SetDoubleAttribute( const char * name, double value );	/** Deletes an attribute with the given name.	*/	void RemoveAttribute( const char * name );    #ifdef TIXML_USE_STL	void RemoveAttribute( const std::string& name )	{	RemoveAttribute (name.c_str ());	}	///< STL std::string form.	#endif	const TiXmlAttribute* FirstAttribute() const	{ return attributeSet.First(); }		///< Access the first attribute in this element.	TiXmlAttribute* FirstAttribute() 				{ return attributeSet.First(); }	const TiXmlAttribute* LastAttribute()	const 	{ return attributeSet.Last(); }		///< Access the last attribute in this element.	TiXmlAttribute* LastAttribute()					{ return attributeSet.Last(); }	/** Convenience function for easy access to the text inside an element. Although easy		and concise, GetText() is limited compared to getting the TiXmlText child		and accessing it directly.			If the first child of 'this' is a TiXmlText, the GetText()		returns the character string of the Text node, else null is returned.		This is a convenient method for getting the text of simple contained text:		@verbatim		<foo>This is text</foo>		const char* str = fooElement->GetText();		@endverbatim		'str' will be a pointer to "This is text". 		

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩精品视频网| 国产成人自拍网| 亚洲欧美日韩国产一区二区三区 | 日韩影院免费视频| 亚洲一区二区三区视频在线| 国产精品久久久久久久蜜臀| 久久久www成人免费毛片麻豆| 91精选在线观看| 色欧美日韩亚洲| 91丨porny丨国产| 成人v精品蜜桃久久一区| 国产一区二区三区免费看| 青青草国产成人99久久| 亚洲国产精品一区二区www在线| 国产午夜三级一区二区三| 精品国产乱码久久久久久牛牛| 91精品国产aⅴ一区二区| 在线播放一区二区三区| 9191精品国产综合久久久久久| 欧美性猛交xxxxxxxx| 日本精品视频一区二区| 色一区在线观看| 色先锋资源久久综合| 91国偷自产一区二区使用方法| 色哟哟一区二区在线观看| 97se狠狠狠综合亚洲狠狠| 91亚洲永久精品| 97久久精品人人爽人人爽蜜臀| 不卡av免费在线观看| 91丨porny丨蝌蚪视频| 97成人超碰视| 欧亚一区二区三区| 欧美精品久久久久久久久老牛影院| 欧美美女bb生活片| 欧美一区二区三区在线| 26uuu欧美日本| 国产精品欧美经典| 亚洲欧美另类综合偷拍| 亚洲精品日韩综合观看成人91| 亚洲制服丝袜在线| 免费欧美高清视频| 成人性生交大片| 大胆亚洲人体视频| 色综合中文字幕国产 | www.亚洲色图.com| 欧洲另类一二三四区| 欧美精品色一区二区三区| 日韩免费视频一区| 欧美激情一区二区三区| 自拍偷拍欧美精品| 亚洲韩国精品一区| 精品在线观看免费| 成人国产精品免费观看| 欧美一a一片一级一片| 精品久久人人做人人爱| 欧美韩国日本综合| 亚洲一区二区在线播放相泽| 久久99精品国产麻豆婷婷洗澡| 大白屁股一区二区视频| 国产精品美日韩| 精品噜噜噜噜久久久久久久久试看| 欧美一区二区精品| 国产精品婷婷午夜在线观看| 亚洲已满18点击进入久久| 日本伊人色综合网| 成人黄色777网| 4hu四虎永久在线影院成人| 久久人人爽人人爽| 亚洲高清在线精品| 成人免费视频国产在线观看| 色欧美88888久久久久久影院| 日韩一级成人av| 亚洲色图丝袜美腿| 韩日精品视频一区| 欧美优质美女网站| 久久精品欧美日韩精品 | 福利视频网站一区二区三区| 欧美天堂一区二区三区| 久久综合九色综合97婷婷| 亚洲自拍欧美精品| 成人av中文字幕| 日韩一级成人av| 亚洲电影在线播放| 波多野结衣中文一区| 日韩一级黄色片| 最新日韩av在线| 国产精一品亚洲二区在线视频| 欧美在线一区二区三区| 欧美国产激情一区二区三区蜜月| 一区二区三区在线免费播放| 国产成人精品影院| 欧美电影在线免费观看| 亚洲日本va在线观看| 成人一区二区在线观看| 欧美日韩亚洲国产综合| 国产精品久久精品日日| 国产综合久久久久影院| 69堂成人精品免费视频| 一区二区三区在线播| 成人黄色片在线观看| 久久综合狠狠综合久久综合88| 亚洲国产精品成人久久综合一区| 亚洲线精品一区二区三区| 国产99久久久精品| 久久蜜臀中文字幕| 美女www一区二区| 欧美精品粉嫩高潮一区二区| 国产日韩欧美在线一区| 国产一区二区三区免费在线观看| 欧美日韩国产高清一区二区 | 国产aⅴ综合色| 日韩美女视频在线| 蜜臀av一区二区在线观看| 欧美裸体bbwbbwbbw| 亚洲国产日产av| 91黄色激情网站| 一区二区三区成人在线视频| 色国产精品一区在线观看| 日韩福利电影在线| 成人福利电影精品一区二区在线观看| 7777女厕盗摄久久久| 三级影片在线观看欧美日韩一区二区| 色综合久久六月婷婷中文字幕| 日韩理论电影院| 99久久精品费精品国产一区二区| 国产精品麻豆视频| 成人中文字幕合集| 欧美激情一二三区| 99久久99久久精品国产片果冻| 亚洲人成电影网站色mp4| 91色porny在线视频| 亚洲精品高清在线观看| 欧洲色大大久久| 五月激情六月综合| 日韩欧美在线不卡| 看电视剧不卡顿的网站| 精品国产一区二区国模嫣然| 国产一区二区三区在线观看免费视频| 久久午夜老司机| 国产99精品国产| 亚洲欧美日韩在线不卡| 色94色欧美sute亚洲线路二| 亚洲一区二区三区在线播放| 日本电影欧美片| 偷拍一区二区三区四区| 日韩欧美国产综合| 狠狠色狠狠色综合系列| 中文字幕精品在线不卡| 91碰在线视频| 日韩国产精品久久久久久亚洲| 久久综合av免费| 99精品视频在线免费观看| 亚洲欧美经典视频| 51精品秘密在线观看| 懂色av噜噜一区二区三区av| 夜夜爽夜夜爽精品视频| 日韩美女一区二区三区| 盗摄精品av一区二区三区| 亚洲午夜久久久久久久久电影网 | 亚洲欧美国产毛片在线| 555夜色666亚洲国产免| 韩国一区二区三区| 亚洲男女毛片无遮挡| 欧美专区在线观看一区| 久久99深爱久久99精品| 中文字幕一区二区三区蜜月 | 精品国产一区二区三区久久久蜜月 | 国产亚洲精品bt天堂精选| 91久久奴性调教| 激情综合色综合久久综合| 18涩涩午夜精品.www| 精品视频一区三区九区| 国产成人在线电影| 天天色天天爱天天射综合| 国产日韩欧美激情| 91精品综合久久久久久| 成人18视频在线播放| 日韩主播视频在线| 国产精品美女久久久久aⅴ国产馆| 欧美巨大另类极品videosbest| 国产98色在线|日韩| 亚洲成av人在线观看| 国产三级精品三级在线专区| 欧美日韩一区二区在线观看视频 | 欧美日韩精品三区| 成人深夜视频在线观看| 日韩av一二三| 一色屋精品亚洲香蕉网站| 精品国产麻豆免费人成网站| 日本伦理一区二区| 国产传媒久久文化传媒| 亚洲精品水蜜桃| 久久久精品日韩欧美| 91麻豆精品国产91久久久久| 色哟哟国产精品免费观看| 国产91丝袜在线播放九色| 久久精品72免费观看| 亚洲1区2区3区视频| 亚洲日韩欧美一区二区在线| 国产亚洲精品7777|