⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ostreamoutputbuffer.cc

📁 c语言编写的xml解析器可以方便的遍历插入删除节点等操作的
💻 CC
字号:
/* document.h * this file is part of libxml++ * * copyright (C) 2003 by libxml++ developer's team * * this file is covered by the GNU Lesser General Public License, * which should be included with libxml++ as the file COPYING. */#include <libxml++/io/ostreamoutputbuffer.h>namespace xmlpp{  OStreamOutputBuffer::OStreamOutputBuffer(      std::ostream & output,      const std::string& encoding)    : OutputBuffer(encoding), output_(output)  {  }  OStreamOutputBuffer::~OStreamOutputBuffer()  {  }    bool OStreamOutputBuffer::do_write(      const char * buffer,      int len)  {    // here we rely on the ostream implicit conversion to boolean, to know if the stream can be used and/or if the write succeded.    if(output_)      output_.write(buffer, len);    return output_;  }  bool OStreamOutputBuffer::do_close()  {    if(output_)        output_.flush();    return output_;  }};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -