x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
stored_rule.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\spirit\dynamic\stored_rule.hpp
旋转
特效
属性
历史版本
/*============================================================================= Copyright (c) 1998-2003 Joel de Guzman http://spirit.sourceforge.net/ 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) =============================================================================*/ #if !defined(BOOST_SPIRIT_STORED_RULE_HPP) #define BOOST_SPIRIT_STORED_RULE_HPP /////////////////////////////////////////////////////////////////////////////// #include
#include
#include
#include
/////////////////////////////////////////////////////////////////////////////// namespace boost { namespace spirit { /////////////////////////////////////////////////////////////////////////// // // stored_rule class // /////////////////////////////////////////////////////////////////////////// template < typename T0 , typename T1 , typename T2 , bool EmbedByValue > class stored_rule : public impl::rule_base< stored_rule
, typename mpl::if_c< EmbedByValue , stored_rule
, stored_rule
const&>::type , T0, T1, T2> { public: typedef stored_rule
self_t; typedef impl::rule_base< self_t , typename mpl::if_c< EmbedByValue , stored_rule
, self_t const&>::type , T0, T1, T2> base_t; typedef typename base_t::scanner_t scanner_t; typedef typename base_t::attr_t attr_t; typedef impl::abstract_parser
abstract_parser_t; typedef rule_alias
alias_t; stored_rule() : ptr() {} ~stored_rule() {} stored_rule(stored_rule const& r) : ptr(r.ptr) {} template
stored_rule(ParserT const& p) : ptr(new impl::concrete_parser
(p)) {} template
stored_rule& operator=(ParserT const& p) { ptr.reset(new impl::concrete_parser
(p)); return *this; } stored_rule& operator=(stored_rule const& r) { // If this is placed above the templatized assignment // operator, VC6 incorrectly complains ambiguity with // r1 = r2, where r1 and r2 are both rules. ptr = r.ptr; return *this; } stored_rule
copy() const { return stored_rule
(ptr); } alias_t alias() const { return alias_t(*this); } private: friend class impl::rule_base_access; friend class stored_rule
; #if defined(__GNUC__) && (__GNUC__ < 3) public: #endif abstract_parser_t* get() const { return ptr.get(); } #if defined(__GNUC__) && (__GNUC__ < 3) private: #endif stored_rule(shared_ptr
const& ptr) : ptr(ptr) {} shared_ptr
ptr; }; /////////////////////////////////////////////////////////////////////////////// }} // namespace boost::spirit #endif
stored_rule.hpp
网页地址
文件地址
上一页
6/10
下一页
下载
( 3 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.