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

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

?? dom_xml.cpp

?? It is WEB browser core module with source code. Very good!
?? CPP
字號:
/**
 * This file is part of the DOM implementation for KDE.
 *
 * (C) 1999 Lars Knoll (knoll@kde.org)
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library; see the file COPYING.LIB.  If not, write to
 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 */


#include "dom/dom_xml.h"
#include "dom/dom_exception.h"
#include "xml/dom_textimpl.h"
#include "xml/dom_xmlimpl.h"

using namespace DOM;

CDATASection::CDATASection()
{
}

CDATASection::CDATASection(const CDATASection &) : Text()
{
}

CDATASection &CDATASection::operator = (const Node &other)
{
    NodeImpl* ohandle = other.handle();
    if ( impl != ohandle ) {
    if (!ohandle || ohandle->nodeType() != CDATA_SECTION_NODE) {
	    if ( impl ) impl->deref();
	impl = 0;
	} else {
    Node::operator =(other);
	}
    }
    return *this;
}

CDATASection &CDATASection::operator = (const CDATASection &other)
{
    Node::operator =(other);
    return *this;
}

CDATASection::~CDATASection()
{
}

CDATASection::CDATASection(CDATASectionImpl *i) : Text(i)
{
}

// ----------------------------------------------------------------------------
Entity::Entity()
{
}

Entity::Entity(const Entity &) : Node()
{
}

Entity &Entity::operator = (const Node &other)
{
    NodeImpl* ohandle = other.handle();
    if ( impl != ohandle ) {
    if (!ohandle || ohandle->nodeType() != ENTITY_NODE) {
	    if ( impl ) impl->deref();
	impl = 0;
	} else {
    Node::operator =(other);
	}
    }
    return *this;
}

Entity &Entity::operator = (const Entity &other)
{
    Node::operator =(other);
    return *this;
}

Entity::~Entity()
{
}

DOMString Entity::publicId() const
{
    if (!impl)
	return DOMString(); // ### enable throw DOMException(DOMException::NOT_FOUND_ERR);

    return ((EntityImpl*)impl)->publicId();
}

DOMString Entity::systemId() const
{
    if (!impl)
	return DOMString(); // ### enable throw DOMException(DOMException::NOT_FOUND_ERR);

    return ((EntityImpl*)impl)->systemId();
}

DOMString Entity::notationName() const
{
    if (!impl)
	return DOMString(); // ### enable throw DOMException(DOMException::NOT_FOUND_ERR);

    return ((EntityImpl*)impl)->notationName();
}

Entity::Entity(EntityImpl *i) : Node(i)
{
}

// ----------------------------------------------------------------------------

EntityReference::EntityReference()
{
}

EntityReference::EntityReference(const EntityReference &) : Node()
{
}

EntityReference &EntityReference::operator = (const Node &other)
{
    NodeImpl* ohandle = other.handle();
    if ( impl != ohandle ) {
    if (!ohandle || ohandle->nodeType() != ENTITY_REFERENCE_NODE) {
	    if ( impl ) impl->deref();
	impl = 0;
	} else {
    Node::operator =(other);
	}
    }
    return *this;
}

EntityReference &EntityReference::operator = (const EntityReference &other)
{
    Node::operator =(other);
    return *this;
}

EntityReference::~EntityReference()
{
}

EntityReference::EntityReference(EntityReferenceImpl *i) : Node(i)
{
}

// ----------------------------------------------------------------------------

Notation::Notation()
{
}

Notation::Notation(const Notation &) : Node()
{
}

Notation &Notation::operator = (const Node &other)
{
    NodeImpl* ohandle = other.handle();
    if ( impl != ohandle ) {
    if (!ohandle || ohandle->nodeType() != NOTATION_NODE) {
	    if ( impl ) impl->deref();
	impl = 0;
	} else {
    Node::operator =(other);
	}
    }
    return *this;
}

Notation &Notation::operator = (const Notation &other)
{
    Node::operator =(other);
    return *this;
}

Notation::~Notation()
{
}

DOMString Notation::publicId() const
{
    if (!impl)
	return DOMString(); // ### enable throw DOMException(DOMException::NOT_FOUND_ERR);

    return ((NotationImpl*)impl)->publicId();
}

DOMString Notation::systemId() const
{
    if (!impl)
	return DOMString(); // ### enable throw DOMException(DOMException::NOT_FOUND_ERR);

    return ((NotationImpl*)impl)->systemId();
}

Notation::Notation(NotationImpl *i) : Node(i)
{
}


// ----------------------------------------------------------------------------

ProcessingInstruction::ProcessingInstruction()
{
}

ProcessingInstruction::ProcessingInstruction(const ProcessingInstruction &)
    : Node()
{
}

ProcessingInstruction &ProcessingInstruction::operator = (const Node &other)
{
    NodeImpl* ohandle = other.handle();
    if ( impl != ohandle ) {
    if (!ohandle || ohandle->nodeType() != PROCESSING_INSTRUCTION_NODE) {
	    if ( impl ) impl->deref();
	impl = 0;
	} else {
    Node::operator =(other);
	}
    }
    return *this;
}

ProcessingInstruction &ProcessingInstruction::operator = (const ProcessingInstruction &other)
{
    Node::operator =(other);
    return *this;
}

ProcessingInstruction::~ProcessingInstruction()
{
}

DOMString ProcessingInstruction::target() const
{
    if (!impl)
	return DOMString(); // ### enable throw DOMException(DOMException::NOT_FOUND_ERR);

    return ((ProcessingInstructionImpl*)impl)->target();
}

DOMString ProcessingInstruction::data() const
{
    if (!impl)
	return DOMString(); // ### enable throw DOMException(DOMException::NOT_FOUND_ERR);

    return ((ProcessingInstructionImpl*)impl)->data();
}

void ProcessingInstruction::setData( const DOMString &_data )
{
    if (!impl)
	return; // ### enable throw DOMException(DOMException::NOT_FOUND_ERR);

    int exceptioncode = 0;
    ((ProcessingInstructionImpl*)impl)->setData(_data, exceptioncode);
    if (exceptioncode)
#if KHTML_NO_EXCEPTIONS     
	_exceptioncode = exceptioncode;
#else
	throw DOMException(exceptioncode);
#endif    
}

ProcessingInstruction::ProcessingInstruction(ProcessingInstructionImpl *i) : Node(i)
{
}

StyleSheet ProcessingInstruction::sheet() const
{
    if (impl) return ((ProcessingInstructionImpl*)impl)->sheet();
    return 0;
}


?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精品国产99久久6| 国产激情一区二区三区四区| 麻豆一区二区三区| 成人精品国产福利| 欧美日韩国产大片| 中文字幕精品三区| 日韩激情一区二区| 91美女在线看| 久久久久高清精品| 秋霞国产午夜精品免费视频| 91小视频免费看| 国产偷国产偷亚洲高清人白洁 | 国产在线视视频有精品| 日本精品视频一区二区| 国产亚洲欧美色| 麻豆传媒一区二区三区| 欧美网站一区二区| 国产精品久久久久婷婷| 国产精品99久| 久久伊99综合婷婷久久伊| 五月天一区二区| 在线亚洲一区二区| 亚洲欧洲三级电影| fc2成人免费人成在线观看播放| 日韩欧美中文一区| 免费久久精品视频| 欧美一区永久视频免费观看| 日日欢夜夜爽一区| 欧美精品粉嫩高潮一区二区| 午夜av区久久| 欧美日韩第一区日日骚| 亚洲一区二区三区中文字幕在线| 99久久精品情趣| 亚洲老妇xxxxxx| 色综合色狠狠天天综合色| 亚洲欧洲无码一区二区三区| 成人97人人超碰人人99| 综合激情成人伊人| 一本到高清视频免费精品| 亚洲欧洲三级电影| 日本韩国欧美一区| 一区二区三区中文字幕| 欧美综合在线视频| 亚洲国产精品久久一线不卡| 欧美欧美欧美欧美| 免费观看久久久4p| 久久久噜噜噜久噜久久综合| 国产91对白在线观看九色| 国产精品青草综合久久久久99| 国产一区二区三区在线看麻豆| 国产视频不卡一区| 99久久免费精品高清特色大片| 亚洲激情六月丁香| 欧美精品丝袜久久久中文字幕| 秋霞电影一区二区| 国产日产精品1区| 91麻豆国产精品久久| 亚洲综合一区在线| 日韩一区二区三区四区| 国产不卡在线视频| 亚洲国产精品一区二区久久| 欧美一区二区三区四区久久| 国产高清无密码一区二区三区| 中文字幕日韩欧美一区二区三区| 欧美在线|欧美| 久久99精品久久久久久久久久久久| 久久久99精品久久| 欧美视频在线一区| 久久69国产一区二区蜜臀| 中文字幕一区不卡| 91麻豆精品国产综合久久久久久| 国产a区久久久| 亚洲成av人**亚洲成av**| 国产亚洲欧美激情| 欧美喷潮久久久xxxxx| 成人网在线播放| 天天操天天色综合| 国产精品激情偷乱一区二区∴| 欧美久久一二三四区| 成人性生交大片免费看中文| 日韩电影在线免费看| 亚洲日本丝袜连裤袜办公室| 欧美一级在线视频| 91成人免费电影| 91蝌蚪porny| 久久99久久精品欧美| 一级日本不卡的影视| 国产亚洲综合在线| 91精品国产综合久久精品麻豆| 99麻豆久久久国产精品免费优播| 老司机免费视频一区二区| 亚洲一二三级电影| 中文字幕亚洲区| 中文字幕乱码日本亚洲一区二区| 精品少妇一区二区| 欧美性大战xxxxx久久久| thepron国产精品| 国产一区二区三区电影在线观看 | 国产sm精品调教视频网站| 日韩精品欧美成人高清一区二区| 亚洲图片激情小说| 国产女人18水真多18精品一级做| 欧美不卡激情三级在线观看| 欧美一卡二卡在线| 欧美一级生活片| 欧美色图天堂网| 欧美探花视频资源| 在线精品国精品国产尤物884a| av在线一区二区三区| 成人a区在线观看| 成人亚洲一区二区一| 成人激情文学综合网| 成人avav在线| 99热国产精品| 色狠狠一区二区| 色婷婷av一区二区三区gif| 成人av网址在线观看| 东方aⅴ免费观看久久av| 国产风韵犹存在线视精品| 国产自产v一区二区三区c| 国产乱国产乱300精品| 国产伦精品一区二区三区免费迷 | 日韩精品亚洲一区二区三区免费| 一区二区三区自拍| 亚洲综合激情网| 亚洲1区2区3区4区| 日本伊人午夜精品| 久久精品久久久精品美女| 精品亚洲免费视频| 国产精品一二一区| 成人av午夜电影| 欧美在线播放高清精品| 欧美一卡二卡三卡| 国产日产精品1区| 一区二区在线看| 日韩在线a电影| 国产乱人伦精品一区二区在线观看| 国产成人高清在线| 色综合天天综合色综合av| 欧美性大战久久久| 精品国产三级a在线观看| 国产性做久久久久久| 亚洲欧美成人一区二区三区| 亚洲一区二区三区爽爽爽爽爽| av成人免费在线| 91极品美女在线| 欧美一卡二卡在线| 国产精品私人自拍| 亚洲风情在线资源站| 久久国产福利国产秒拍| 99视频在线精品| 日韩一级在线观看| 国产精品成人一区二区艾草 | 91麻豆精品国产91久久久使用方法| 欧美电影免费观看高清完整版在线 | 精品久久久影院| 亚洲图片激情小说| 久久精品99国产国产精| 色呦呦国产精品| 久久综合网色—综合色88| 亚洲综合一区在线| 国产一区二区成人久久免费影院| 色欧美乱欧美15图片| 精品va天堂亚洲国产| 一区二区三区不卡在线观看| 国产剧情一区二区三区| 欧美日韩久久一区| 亚洲国产精品t66y| 日韩av中文字幕一区二区三区| 成人久久久精品乱码一区二区三区 | 色综合久久综合中文综合网| 日韩一区二区三区免费看| 一区二区三区色| 国产精品123| 精品久久国产97色综合| 尤物在线观看一区| 国产91精品精华液一区二区三区 | 久久成人精品无人区| 欧美午夜精品理论片a级按摩| 久久精品在线观看| 美女网站一区二区| 欧美视频在线播放| 亚洲欧美日韩国产另类专区| 国产精品亚洲午夜一区二区三区| 91超碰这里只有精品国产| 亚洲麻豆国产自偷在线| 成人激情视频网站| 久久久www成人免费无遮挡大片| 日韩福利电影在线观看| 欧美日韩色一区| 亚洲不卡一区二区三区| 色94色欧美sute亚洲13| 亚洲婷婷综合色高清在线| 国产成人精品www牛牛影视| 精品99999| 国产一区二区三区四| 久久综合色综合88| 狠狠色丁香婷婷综合| 日韩一区二区三区在线视频| 日本女人一区二区三区|