コード例 #1
0
ファイル: print_width.hpp プロジェクト: anibalanto/hyp
 local_stream_flags(stream_type& stream) : pstream(&stream), saved_flags(stream.flags()) {}
コード例 #2
0
ファイル: print_width.hpp プロジェクト: anibalanto/hyp
 ~local_stream_flags() { pstream->flags(saved_flags); }
コード例 #3
0
ファイル: stream_utils.hpp プロジェクト: kspangsege/archon
 template<class C, class T> BasicIosFormatResetter<C,T>::
 BasicIosFormatResetter(stream_type &s):
   stream(s), orig_flags(s.flags()), orig_fill(s.fill()), orig_prec(s.precision()) {}