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

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

?? tinyxml.h

?? sigmadesign smp8623 gui source code ,bingo
?? H
?? 第 1 頁 / 共 4 頁
字號:
	void SetIntValue( int value );										///< Set the value from an integer.#ifndef NO_FPU		void SetDoubleValue( double value );								///< Set the value from a double.#endif    #ifdef TIXML_USE_STL	/// STL std::string form.	void SetName( const std::string& _name )		{			StringToBuffer buf( _name );		SetName ( buf.buffer ? buf.buffer : "error" );		}	/// STL std::string form.		void SetValue( const std::string& _value )		{			StringToBuffer buf( _value );		SetValue( buf.buffer ? buf.buffer : "error" );		}	#endif	/// Get the next sibling attribute in the DOM. Returns null at end.	TiXmlAttribute* Next() const;	/// Get the previous sibling attribute in the DOM. Returns null at beginning.	TiXmlAttribute* Previous() const;	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;	virtual void StreamOut( TIXML_OSTREAM * out ) 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 );	TiXmlAttribute* First() const	{ return ( sentinel.next == &sentinel ) ? 0 : sentinel.next; }	TiXmlAttribute* Last()  const	{ return ( sentinel.prev == &sentinel ) ? 0 : sentinel.prev; }	TiXmlAttribute*	Find( const char * name ) const;		// [RC] NEW	TiXmlAttribute*	Find( const char * name, bool casefree ) const;private:	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;		// [RC] NEW	/** Case insensitive attribute match	*/	const char* Attribute( const char* name, bool casefree ) 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;	#ifndef NO_FPU	/** 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;#endif	/** 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;#ifndef NO_FPU	/// QueryDoubleAttribute examines the attribute - see QueryIntAttribute().	int QueryDoubleAttribute( const char* name, double* value ) const;#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 char* Attribute( const std::string& name ) const				{ return Attribute( name.c_str() ); }	const char* Attribute( const std::string& name, int* i ) const		{ return Attribute( name.c_str(), i ); }#ifndef NO_FPU		const char* Attribute( const std::string& name, double* d ) const	{ return Attribute( name.c_str(), d ); }#endif	int QueryIntAttribute( const std::string& name, int* value ) const	{ return QueryIntAttribute( name.c_str(), value ); }#ifndef NO_FPU	int QueryDoubleAttribute( const std::string& name, double* value ) const { return QueryDoubleAttribute( name.c_str(), value ); }#endif	/// STL std::string form.	void SetAttribute( const std::string& name, const std::string& _value )		{			StringToBuffer n( name );		StringToBuffer v( _value );		if ( n.buffer && v.buffer )			SetAttribute (n.buffer, v.buffer );		}		///< STL std::string form.	void SetAttribute( const std::string& name, int _value )		{			StringToBuffer n( name );		if ( n.buffer )			SetAttribute (n.buffer, _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 );#ifndef NO_FPU	/** 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 );#endif	/** 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	TiXmlAttribute* FirstAttribute() const	{ return attributeSet.First(); }		///< Access the first attribute in this element.	TiXmlAttribute* LastAttribute()	const 	{ return attributeSet.Last(); }		///< Access the last attribute in this element.	/// 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 );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( TIXML_ISTREAM * in, TIXML_STRING * tag );	#endif	virtual void StreamOut( TIXML_OSTREAM * out ) const;	/*	[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 ) {}	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 );protected:	void CopyTo( TiXmlComment* target ) const;	// used to be public	#ifdef TIXML_USE_STL	    virtual void StreamIn( TIXML_ISTREAM * in, TIXML_STRING * tag );	#endif	virtual void StreamOut( TIXML_OSTREAM * out ) const;private:};/** XML text. Contained in an element.*/class TiXmlText : public TiXmlNode{	friend class TiXmlElement;public:	/// Constructor.	TiXmlText (const char * initValue) : TiXmlNode (TiXmlNode::TEXT)	{		SetValue( initValue );	}	virtual ~TiXmlText() {}	#ifdef TIXML_USE_STL	/// Constructor.	TiXmlText( const std::string& initValue ) : TiXmlNode (TiXmlNode::TEXT)	{		SetValue( initValue );	}	#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;	virtual const char* Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding );protected :	///  [internal use] Creates a new Element and returns it.	virtual TiXmlNode* Clone() const;	void CopyTo( TiXmlText* target ) const;	virtual void StreamOut ( TIXML_OSTREAM * out ) const;	bool Blank() const;	// returns true if all white space and new lines	// [internal use]	#ifdef TIXML_USE_STL	    virtual void StreamIn( TIXML_ISTREAM * in, TIXML_STRING * tag );	#endifprivate:};/** 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 (); }

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧洲亚洲国产日韩| 国产精品资源在线| 日本韩国一区二区三区视频| 国产精品久久久99| 99精品视频在线观看免费| 日韩理论片中文av| 欧美无乱码久久久免费午夜一区| 亚洲嫩草精品久久| 欧美日韩精品一区二区三区| 91麻豆国产在线观看| 亚洲在线视频免费观看| 欧美精品v国产精品v日韩精品| 日本视频一区二区| 中文字幕欧美三区| 在线观看91视频| 久久疯狂做爰流白浆xx| 日本一区二区三区四区在线视频| 色综合久久久久综合| 天天综合色天天| 国产日产精品1区| 在线视频国产一区| 免费黄网站欧美| 国产精品第13页| 欧美丰满一区二区免费视频| 国产一区二区不卡老阿姨| 中文字幕日韩一区| 欧美一级欧美一级在线播放| 国产呦萝稀缺另类资源| 亚洲精品中文在线| www久久精品| 欧美在线啊v一区| 国产精品自拍三区| 亚洲成人动漫精品| 中国色在线观看另类| 欧美日本一区二区三区| 高清国产一区二区| 石原莉奈在线亚洲二区| 日本一区二区成人在线| 欧美精品一二三| 成人免费视频免费观看| 蜜臀va亚洲va欧美va天堂| 亚洲桃色在线一区| 久久欧美一区二区| 欧美精品777| 91色.com| 国产福利视频一区二区三区| 日韩在线一二三区| 亚洲精品成人在线| 中文字幕久久午夜不卡| 精品日产卡一卡二卡麻豆| 色婷婷综合中文久久一本| 国产一区高清在线| 奇米色一区二区| 亚洲自拍偷拍图区| 狠狠色丁香婷婷综合| 亚洲一区二区高清| 国产精品国模大尺度视频| 精品88久久久久88久久久 | 亚洲福利视频一区二区| 日韩亚洲欧美综合| 欧美日韩国产高清一区二区三区| 99re热这里只有精品免费视频 | 精品成人一区二区三区四区| 欧美在线观看视频在线| 91碰在线视频| 91亚洲大成网污www| 福利电影一区二区三区| 精品影院一区二区久久久| 全国精品久久少妇| 蜜桃视频第一区免费观看| 日本亚洲电影天堂| 日韩高清在线观看| 三级影片在线观看欧美日韩一区二区 | 欧美色偷偷大香| 欧美羞羞免费网站| 欧美综合欧美视频| 日本久久电影网| 色婷婷av一区| 日本大香伊一区二区三区| 色域天天综合网| 色88888久久久久久影院按摩| 99国产精品久久久久久久久久 | 日韩美女视频在线| 日韩欧美一二三区| 精品国产乱码久久久久久蜜臀 | 亚洲国产一区视频| 亚洲v日本v欧美v久久精品| 亚洲福利国产精品| 蜜臀av在线播放一区二区三区| 蜜桃视频一区二区三区| 韩国在线一区二区| 国产高清精品在线| 99久久免费精品高清特色大片| 色婷婷综合久久久中文一区二区| 99在线热播精品免费| 91福利小视频| 日韩一区二区三区在线观看| 精品久久久久久久久久久久久久久久久 | 日韩一区二区在线免费观看| 欧美成人激情免费网| 久久99热这里只有精品| 国内精品视频666| 成人国产在线观看| 日本乱人伦aⅴ精品| 欧美一卡二卡三卡| 国产欧美日韩精品一区| 亚洲精品久久嫩草网站秘色| 五月天网站亚洲| 国产乱码精品1区2区3区| 国产高清精品网站| 欧美自拍偷拍一区| 欧美一区二区视频免费观看| 久久综合999| 一区二区三区资源| 久久国产三级精品| 99精品国产视频| 日韩午夜电影av| 国产精品久久久久7777按摩| 午夜视频一区二区三区| 国产69精品久久久久毛片| 欧美色大人视频| 久久久蜜臀国产一区二区| 亚洲精品大片www| 国产尤物一区二区在线| 色8久久精品久久久久久蜜| 精品久久久久久久一区二区蜜臀| 国产精品福利一区| 精品在线播放午夜| 色94色欧美sute亚洲线路一久| 精品免费99久久| 亚欧色一区w666天堂| 高清av一区二区| 欧美一区二区精品| 亚洲一区二区精品3399| 成人久久18免费网站麻豆 | 亚洲国产视频在线| 国产精品一区二区黑丝| 欧美高清视频在线高清观看mv色露露十八| 久久美女高清视频| 天堂精品中文字幕在线| 色综合久久久久综合99| 国产视频一区二区在线| 捆绑调教美女网站视频一区| 欧美日韩不卡在线| 亚洲欧美成人一区二区三区| 国产精品99久久久久久久vr| 91精品在线免费观看| 亚洲国产成人porn| 一本大道久久精品懂色aⅴ| 久久这里只有精品6| 免费观看91视频大全| 欧美日韩国产综合草草| 一区二区三区在线影院| www.av精品| 中文字幕欧美区| 高清在线观看日韩| 国产午夜精品美女毛片视频| 精品一区二区三区在线观看| 欧美一区二区三区婷婷月色| 亚洲一区二区三区在线看| av男人天堂一区| 国产精品夫妻自拍| 不卡的av电影| 欧美激情中文字幕一区二区| 国产乱码精品1区2区3区| 久久午夜羞羞影院免费观看| 久久国产乱子精品免费女| 制服丝袜av成人在线看| 五月婷婷色综合| 欧美人牲a欧美精品| 日韩高清不卡一区| 91麻豆精品国产| 欧美性xxxxxx少妇| 亚洲国产综合91精品麻豆| 欧美三级韩国三级日本一级| 亚洲高清中文字幕| 欧美一区二区网站| 麻豆精品国产91久久久久久| 日韩三级视频在线看| 韩国三级在线一区| 久久久久97国产精华液好用吗| 国产精品中文字幕一区二区三区| 日韩欧美在线影院| 黄网站免费久久| 中文字幕乱码日本亚洲一区二区| 成人精品免费视频| 亚洲免费毛片网站| 欧美精品乱人伦久久久久久| 日本女人一区二区三区| 久久久久久久久99精品| www.亚洲色图.com| 亚洲在线视频免费观看| 日韩一级完整毛片| 国产成人在线看| 一区二区三区在线播放| 这里只有精品视频在线观看| 国产精选一区二区三区| 亚洲欧洲无码一区二区三区| 欧美理论片在线| 久久国产综合精品|