parameter_requirements.hpp

来自「Boost provides free peer-reviewed portab」· HPP 代码 · 共 26 行

HPP
26
字号
// Copyright Daniel Wallin, David Abrahams 2005. Use, modification and// distribution is subject to 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)#ifndef PARAMETER_REQUIREMENTS_050331_HPP#define PARAMETER_REQUIREMENTS_050331_HPPnamespace boost { namespace parameter { namespace aux {// Used to pass static information about parameter requirements// through the satisfies() overload set (below).  The// matched function is never invoked, but its type indicates whether// a parameter matches at compile-timetemplate <class Keyword, class Predicate, class HasDefault>struct parameter_requirements{    typedef Keyword keyword;    typedef Predicate predicate;    typedef HasDefault has_default;};}}} // namespace boost::parameter::aux#endif // PARAMETER_REQUIREMENTS_050331_HPP

⌨️ 快捷键说明

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