x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
format_class.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\format\format_class.hpp
旋转
特效
属性
历史版本
// ---------------------------------------------------------------------------- // format_class.hpp : class interface // ---------------------------------------------------------------------------- // Copyright Samuel Krempp 2003. Use, modification, and distribution are // 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) // See http://www.boost.org/libs/format for library home page // ---------------------------------------------------------------------------- #ifndef BOOST_FORMAT_CLASS_HPP #define BOOST_FORMAT_CLASS_HPP #include
#include
#include
// to store locale when needed #include
#include
#include
#include
namespace boost { template
class basic_format { typedef typename io::CompatTraits
::compatible_type compat_traits; public: typedef Ch CharT; // borland fails in operator% if we use Ch and Tr directly typedef std::basic_string
string_type; typedef typename string_type::size_type size_type; typedef io::detail::format_item
format_item_t; typedef io::basic_altstringbuf
internal_streambuf_t; explicit basic_format(const Ch* str=NULL); explicit basic_format(const string_type& s); basic_format(const basic_format& x); basic_format& operator= (const basic_format& x); void swap(basic_format& x); #if !defined(BOOST_NO_STD_LOCALE) explicit basic_format(const Ch* str, const std::locale & loc); explicit basic_format(const string_type& s, const std::locale & loc); #endif io::detail::locale_t getloc() const; basic_format& clear(); // empty all converted string buffers (except bound items) basic_format& clear_binds(); // unbind all bound items, and call clear() basic_format& parse(const string_type&); // resets buffers and parse a new format string // ** formatted result ** // size_type size() const; // sum of the current string pieces sizes string_type str() const; // final string // ** arguments passing ** // template
basic_format& operator%(const T& x) { return io::detail::feed
(*this,x); } #ifndef BOOST_NO_OVERLOAD_FOR_NON_CONST template
basic_format& operator%(T& x) { return io::detail::feed
(*this,x); } #endif // ** object modifying **// template
basic_format& bind_arg(int argN, const T& val) { return io::detail::bind_arg_body(*this, argN, val); } basic_format& clear_bind(int argN); template
basic_format& modify_item(int itemN, T manipulator) { return io::detail::modify_item_body
(*this, itemN, manipulator);} // Choosing which errors will throw exceptions : unsigned char exceptions() const; unsigned char exceptions(unsigned char newexcept); #if !defined( BOOST_NO_MEMBER_TEMPLATE_FRIENDS ) \ && !BOOST_WORKAROUND(__BORLANDC__, <= 0x570) \ && !BOOST_WORKAROUND( _CRAYC, != 0) \ && !BOOST_WORKAROUND(__DECCXX_VER, BOOST_TESTED_AT(60590042)) // use friend templates and private members only if supported #ifndef BOOST_NO_TEMPLATE_STD_STREAM template
friend std::basic_ostream
& operator<<( std::basic_ostream
& , const basic_format
& ); #else template
friend std::ostream & operator<<( std::ostream & , const basic_format
& ); #endif template
friend basic_format
& io::detail::feed (basic_format
&, T); template
friend void io::detail::distribute (basic_format
&, T); template
friend basic_format
& io::detail::modify_item_body (basic_format
&, int, T); template
friend basic_format
& io::detail::bind_arg_body (basic_format
&, int, const T&); private: #endif typedef io::detail::stream_format_state
stream_format_state; // flag bits, used for style_ enum style_values { ordered = 1, // set only if all directives are positional special_needs = 4 }; void make_or_reuse_data(std::size_t nbitems);// used for (re-)initialisation // member data --------------------------------------------// std::vector
items_; // each '%..' directive leads to a format_item std::vector
bound_; // stores which arguments were bound. size() == 0 || num_args int style_; // style of format-string : positional or not, etc int cur_arg_; // keep track of wich argument is current int num_args_; // number of expected arguments mutable bool dumped_; // true only after call to str() or << string_type prefix_; // piece of string to insert before first item unsigned char exceptions_; internal_streambuf_t buf_; // the internal stream buffer. boost::optional
loc_; }; // class basic_format } // namespace boost #endif // BOOST_FORMAT_CLASS_HPP
format_class.hpp
网页地址
文件地址
上一页
5/12
下一页
下载
( 6 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.