iso8859_1_regex_traits.hpp

来自「正则表达式源代码」· HPP 代码 · 共 26 行

HPP
26
字号
/* * (C) Copyright Christain Engstrom 2001. * Permission to copy, use, modify, sell and distribute this software * is granted provided this copyright notice appears in all copies. * This software is provided "as is" without express or implied * warranty, and with no claim as to its suitability for any purpose. */#ifndef BOOST_ISO8859_1_REGEX_TRAITS_HPP#define BOOST_ISO8859_1_REGEX_TRAITS_HPP  class iso8859_1_regex_traits : public boost::c_regex_traits<char> {private:  typedef boost::c_regex_traits<char> base;public:  iso8859_1_regex_traits() {}  ~iso8859_1_regex_traits() {}  bool is_class(char c, boost::uint_fast32_t f) const;  char translate(char c, bool icase) const;};#endif

⌨️ 快捷键说明

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