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

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

?? attributesimpl.h

?? This software aims to create an applet and panel tools to manage a wireless interface card, such as
?? H
字號:
//
// AttributesImpl.h
//
// $Id: //poco/Main/XML/include/SAX/AttributesImpl.h#5 $
//
// Implementation of the SAX2 Attributes Interface.
//
// Copyright (c) 2004, Guenter Obiltschnig/Applied Informatics.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// 1. Redistributions of source code must retain the above copyright
//    notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
//    notice, this list of conditions and the following disclaimer in the
//    documentation and/or other materials provided with the distribution.
//
// 3. Redistributions in any form must be accompanied by information on
//    how to obtain complete source code for this software and any
//    accompanying software that uses this software.  The source code
//    must either be included in the distribution or be available for no
//    more than the cost of distribution plus a nominal fee, and must be
//    freely redistributable under reasonable conditions.  For an
//    executable file, complete source code means the source code for all
//    modules it contains.  It does not include source code for modules or
//    files that typically accompany the major components of the operating
//    system on which the executable file runs.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
// COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//


#ifndef SAX_AttributesImpl_INCLUDED
#define SAX_AttributesImpl_INCLUDED


#ifndef XML_XML_INCLUDED
#include "XML/XML.h"
#endif
#ifndef SAX_Attributes_INCLUDED
#include "SAX/Attributes.h"
#endif
#ifndef STD_VECTOR_INCLUDED
#include <vector>
#define STD_VECTOR_INCLUDED
#endif


XML_BEGIN


class XML_API AttributesImpl: public Attributes
	/// This class provides a default implementation of the SAX2 Attributes interface, 
	/// with the addition of manipulators so that the list can be modified or reused.
	/// 
	/// There are two typical uses of this class:
	/// 
	///     1. to take a persistent snapshot of an Attributes object in a startElement event; or
	///     2. to construct or modify an Attributes object in a SAX2 driver or filter.
{
public:
	AttributesImpl();
		/// Creates the AttributesImpl.
		
	AttributesImpl(const Attributes& attributes);
		/// Creates the AttributesImpl by copying another one.

	AttributesImpl(const AttributesImpl& attributes);
		/// Creates the AttributesImpl by copying another one.

	~AttributesImpl();
		/// Destroys the AttributesImpl.

	AttributesImpl& operator = (const AttributesImpl& attributes);
		/// Assignment operator.

	int getIndex(const XMLString& name) const;
	int getIndex(const XMLString& namespaceURI, const XMLString& localName) const;
	int getLength() const;
	XMLString getLocalName(int i) const;
	XMLString getQName(int i) const;
	XMLString getType(int i) const;
	XMLString getType(const XMLString& qname) const;
	XMLString getType(const XMLString& namespaceURI, const XMLString& localName) const;
	XMLString getValue(int i) const;
	XMLString getValue(const XMLString& qname) const;
	XMLString getValue(const XMLString& namespaceURI, const XMLString& localName) const;
	XMLString getURI(int i) const;

	bool isSpecified(int i) const;
		/// Returns true unless the attribute value was provided by DTD defaulting.
		/// Extension from Attributes2 interface.

	bool isSpecified(const XMLString& qname) const;
		/// Returns true unless the attribute value was provided by DTD defaulting.
		/// Extension from Attributes2 interface.

	bool isSpecified(const XMLString& namespaceURI, const XMLString& localName) const;
		/// Returns true unless the attribute value was provided by DTD defaulting.
		/// Extension from Attributes2 interface.

	void setValue(int i, const XMLString& value);
		/// Sets the value of an attribute.

	void setValue(const XMLString& qname, const XMLString& value);
		/// Sets the value of an attribute.

	void setValue(const XMLString& namespaceURI, const XMLString& localName, const XMLString& value);
		/// Sets the value of an attribute.

	void setAttributes(const Attributes& attributes);
		/// Copies the attributes from another Attributes object.

	void setAttribute(int i, const XMLString& namespaceURI, const XMLString& localName, const XMLString& qname, const XMLString& type, const XMLString& value);
		/// Sets an attribute.

	void addAttribute(const XMLString& namespaceURI, const XMLString& localName, const XMLString& qname, const XMLString& type, const XMLString& value);
		/// Adds an attribute to the end of the list.

	void addAttribute(const XMLString& namespaceURI, const XMLString& localName, const XMLString& qname, const XMLString& type, const XMLString& value, bool specified);
		/// Adds an attribute to the end of the list.

	void addAttribute(const XMLChar* namespaceURI, const XMLChar* localName, const XMLChar* qname, const XMLChar* type, const XMLChar* value, bool specified);
		/// Adds an attribute to the end of the list.

	void removeAttribute(int i);
		/// Removes an attribute.

	void removeAttribute(const XMLString& qname);
		/// Removes an attribute.

	void removeAttribute(const XMLString& namespaceURI, const XMLString& localName);
		/// Removes an attribute.

	void clear();
		/// Removes all attributes.

	void setLocalName(int i, const XMLString& localName);
		/// Sets the local name of an attribute.

	void setQName(int i, const XMLString& qname);
		/// Sets the qualified name of an attribute.

	void setType(int i, const XMLString& type);
		/// Sets the type of an attribute.

	void setURI(int i, const XMLString& namespaceURI);
		/// Sets the namespace URI of an attribute.

	struct Attribute
	{
		XMLString localName;
		XMLString namespaceURI;
		XMLString qname;
		XMLString value;
		XMLString type;
		bool      specified;
	};
	typedef std::vector<Attribute> AttributeVec;
	typedef AttributeVec::const_iterator iterator;

	iterator begin() const;
		/// Iterator support.
		
	iterator end() const;
		/// Iterator support.

protected:	
	Attribute* find(const XMLString& qname) const;
	Attribute* find(const XMLString& namespaceURI, const XMLString& localName) const;

private:
	AttributeVec _attributes;
};


//
// inlines
//
inline AttributesImpl::iterator AttributesImpl::begin() const
{
	return _attributes.begin();
}


inline AttributesImpl::iterator AttributesImpl::end() const
{
	return _attributes.end();
}


XML_END


#endif // SAX_AttributesImpl_INCLUDED

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品视频一区二区| 欧美激情一区三区| 成人午夜大片免费观看| 亚洲韩国精品一区| 中文字幕欧美三区| 日韩你懂的在线观看| 欧美在线你懂的| www.色综合.com| 精品一区二区三区影院在线午夜| 欧美国产激情一区二区三区蜜月| 欧美久久高跟鞋激| 成人激情小说乱人伦| 青青草国产精品亚洲专区无| 亚洲一区二区av在线| 国产精品日韩精品欧美在线| 久久色在线视频| 91精品国产综合久久精品性色| 色偷偷一区二区三区| 成人av在线资源网站| 成人av在线影院| 成人视屏免费看| caoporn国产一区二区| 国产精品538一区二区在线| 国产一区免费电影| 国产一区二区福利视频| 国产91丝袜在线观看| 国产成人综合自拍| 99久久久国产精品免费蜜臀| 99久久久久久| 欧美三级欧美一级| 日韩一级大片在线| 久久五月婷婷丁香社区| 国产三级一区二区三区| 中文字幕亚洲区| 亚洲成人自拍偷拍| 久久电影网电视剧免费观看| 麻豆国产精品777777在线| 国产一区二区三区观看| 成人深夜福利app| 中文字幕一区二区三区av| 色婷婷久久久亚洲一区二区三区 | 国产精品亚洲а∨天堂免在线| 国产91精品露脸国语对白| 在线一区二区视频| 日韩免费福利电影在线观看| 国产精品美女久久久久高潮| 奇米亚洲午夜久久精品| 狠狠色狠狠色综合日日91app| 不卡影院免费观看| 欧美日韩视频一区二区| 久久99久久精品| 一本到三区不卡视频| 91精品国产综合久久久久久| 亚洲欧美在线观看| 美女脱光内衣内裤视频久久网站| 九九视频精品免费| 奇米精品一区二区三区在线观看一 | 亚洲精品免费在线| 国产激情精品久久久第一区二区| 日本精品一区二区三区四区的功能| 日韩一级在线观看| 午夜久久久久久电影| 成人网页在线观看| 中文一区一区三区高中清不卡| 五月激情丁香一区二区三区| 972aa.com艺术欧美| 久久精品视频一区二区| 美女性感视频久久| 日韩午夜激情av| 人人精品人人爱| 欧美日韩高清一区二区不卡| 亚洲精品视频在线| 91福利在线看| 午夜在线电影亚洲一区| 91天堂素人约啪| 亚洲人成7777| 欧美少妇一区二区| 亚洲成人精品影院| 日韩一卡二卡三卡四卡| 日本欧美肥老太交大片| 欧美电视剧免费全集观看| 韩国午夜理伦三级不卡影院| 久久综合久久综合九色| 国产成人免费视频一区| 国产精品国产三级国产普通话蜜臀 | 国产乱码精品一区二区三| 久久久不卡影院| 99视频一区二区| 视频精品一区二区| 欧美成人性战久久| 成人美女视频在线看| 日韩美女啊v在线免费观看| 久久se这里有精品| 欧美mv日韩mv国产网站| 不卡电影免费在线播放一区| 自拍偷拍亚洲欧美日韩| 日本福利一区二区| 日韩精品五月天| 精品精品欲导航| 在线视频综合导航| 日韩av成人高清| 久久美女高清视频| 99精品黄色片免费大全| 亚洲午夜精品一区二区三区他趣| 26uuu亚洲婷婷狠狠天堂| 高清成人在线观看| 一区二区三区精品在线| 精品女同一区二区| 91美女视频网站| 国产精品一级片| 亚洲大片免费看| 国产欧美一区二区精品忘忧草 | 国产精品中文字幕欧美| 亚洲午夜羞羞片| 久久久久成人黄色影片| 在线观看av一区二区| 国产成人高清在线| 麻豆精品一区二区三区| 午夜电影一区二区| 亚洲三级电影网站| 精品国产一区a| 欧美精品成人一区二区三区四区| 99视频一区二区三区| 国产精品一二三区在线| 日本女优在线视频一区二区| 亚洲男同1069视频| 亚洲婷婷在线视频| 国产欧美在线观看一区| 久久人人爽人人爽| 久久丝袜美腿综合| 久久久亚洲国产美女国产盗摄| 欧美一区二区私人影院日本| 欧美日韩国产综合视频在线观看| eeuss鲁片一区二区三区| 成人激情校园春色| 成人一区二区三区| av成人免费在线观看| youjizz久久| 欧洲精品视频在线观看| 欧美色窝79yyyycom| 99久久777色| 欧美日韩国产三级| 精品欧美一区二区久久| 国产欧美一区二区精品秋霞影院| 国产肉丝袜一区二区| 久久久亚洲精华液精华液精华液| 国产精品色一区二区三区| 国产精品理伦片| 亚洲午夜精品网| 国产尤物一区二区在线| 91福利视频网站| 日韩欧美一二三| 亚洲免费观看高清完整版在线 | 国产日韩精品一区| 一区二区三区**美女毛片| 亚洲国产欧美在线| 国产一区二区三区免费看| 日本韩国一区二区三区视频| 亚洲精品在线免费播放| **性色生活片久久毛片| 久久99热狠狠色一区二区| 9人人澡人人爽人人精品| 91精品国产欧美一区二区18| 亚洲同性同志一二三专区| 中文字幕一区二区三区在线播放 | 亚洲国产一区二区在线播放| 亚洲高清免费在线| 91社区在线播放| 久久精品一区二区三区四区| 亚洲影院在线观看| 成人精品一区二区三区中文字幕| 日本久久精品电影| 亚洲欧美另类小说视频| 高清av一区二区| 日韩三级视频在线看| 午夜一区二区三区在线观看| 欧亚一区二区三区| 国产精品久久影院| 成人免费视频网站在线观看| 欧美一级二级三级蜜桃| 亚洲午夜精品在线| 91精品国产综合久久婷婷香蕉| 樱花草国产18久久久久| 91蝌蚪porny九色| 国产精品欧美一区二区三区| 看国产成人h片视频| 久久午夜色播影院免费高清| 精品伊人久久久久7777人| 7777精品伊人久久久大香线蕉经典版下载 | 久久精品国产精品亚洲红杏| 7777女厕盗摄久久久| 日韩精品电影一区亚洲| 日韩欧美在线1卡| 五月婷婷综合网| 精品国产一区二区三区av性色| 午夜精品福利一区二区三区av| 在线一区二区三区四区五区| 天堂在线一区二区| 久久尤物电影视频在线观看| 97久久精品人人澡人人爽|