📄 construct_fwd.hpp
字号:
// Copyright (c) 2001-2008 Hartmut Kaiser//// Distributed under the Boost Software License, Version 1.0. (See accompanying// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)#if !defined(BOOST_SPIRIT_CONSTRUCT_FWD_MAY_29_2008_0318PM)#define BOOST_SPIRIT_CONSTRUCT_FWD_MAR_29_2008_0318PM#if defined(_MSC_VER) && (_MSC_VER >= 1020)#pragma once // MS compatible compilers support #pragma once#endifnamespace boost { namespace spirit { namespace qi { namespace detail{ namespace construct_ { /////////////////////////////////////////////////////////////////////// // Forward declarations of overloads for the construct customization // point for all built in types /////////////////////////////////////////////////////////////////////// template <typename Iterator> inline void construct(char& attr, Iterator const& first, Iterator const& last);#if !defined(BOOST_NO_INTRINSIC_WCHAR_T) // wchar_t is intrinsic template <typename Iterator> inline void construct(wchar_t& attr, Iterator const& first, Iterator const& last); template <typename Iterator> inline void construct(unsigned short& attr, Iterator const& first, Iterator const& last);#else // is wchar_t is not an intrinsic type, treat wchar_t only template <typename Iterator> inline void construct(wchar_t& attr, Iterator const& first, Iterator const& last);#endif template <typename Iterator> inline void construct(short& attr, Iterator const& first, Iterator const& last); template <typename Iterator> inline void construct(int& attr, Iterator const& first, Iterator const& last); template <typename Iterator> inline void construct(unsigned int& attr, Iterator const& first, Iterator const& last); template <typename Iterator> inline void construct(long& attr, Iterator const& first, Iterator const& last); template <typename Iterator> inline void construct(unsigned long& attr, Iterator const& first, Iterator const& last);#ifdef BOOST_HAS_LONG_LONG template <typename Iterator> inline void construct(boost::long_long_type& attr, Iterator const& first, Iterator const& last); template <typename Iterator> inline void construct(boost::ulong_long_type& attr, Iterator const& first, Iterator const& last);#endif template <typename Iterator> inline void construct(float& attr, Iterator const& first, Iterator const& last); template <typename Iterator> inline void construct(double& attr, Iterator const& first, Iterator const& last); template <typename Iterator> inline void construct(long double& attr, Iterator const& first, Iterator const& last); } }}}}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -