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

📄 charsetconverter.h

📁 著名的标准C++的html解析器
💻 H
字号:
#ifndef __CHARSET_CONVERTER_H__#define __CHARSET_CONVERTER_H__#include <iconv.h>#include <string>#include <stdexcept>namespace htmlcxx{	class CharsetConverter	{		public:			class Exception : public std::runtime_error			{				public:					Exception(const std::string &arg)						: std::runtime_error(arg) {}			};						CharsetConverter(const std::string &from, const std::string &to) throw (Exception);			~CharsetConverter();						std::string convert(const std::string &input);		private:			iconv_t mIconvDescriptor;;	};}#endif

⌨️ 快捷键说明

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