⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 istream_line_iterator.hpp

📁 CGAL is a collaborative effort of several sites in Europe and Israel. The goal is to make the most i
💻 HPP
字号:
//  (C) Copyright Gennadiy Rozental 2004.//  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)//  See http://www.boost.org/libs/test for the library home page.////  File        : $RCSfile: istream_line_iterator.hpp,v $////  Version     : $Revision: 1.1.1.1 $////  Description : // ***************************************************************************#ifndef BOOST_ISTREAM_LINE_ITERATOR_HPP_071894GER#define BOOST_ISTREAM_LINE_ITERATOR_HPP_071894GER// Boost#include <boost/test/detail/basic_cstring/basic_cstring.hpp>#include <boost/test/detail/iterator/input_iterator_facade.hpp>// STL#include <iosfwd>namespace boost {namespace unit_test {// ************************************************************************** //// **************         basic_istream_line_iterator          ************** //// ************************************************************************** ////!! Should we support policy based delimitationtemplate<typename CharT>class basic_istream_line_iterator: public input_iterator_facade<basic_istream_line_iterator<CharT>,                               std::basic_string<CharT>,                               basic_cstring<CharT const> > {    typedef input_iterator_facade<basic_istream_line_iterator<CharT>,                                  std::basic_string<CharT>,                                  basic_cstring<CharT const> > base;#ifdef BOOST_CLASSIC_IOSTREAMS    typedef std::istream              istream_type;#else    typedef std::basic_istream<CharT> istream_type;#endifpublic:    // Constructors    basic_istream_line_iterator() {}    basic_istream_line_iterator( istream_type& input, CharT delimeter )    : m_input_stream( &input ), m_delimeter( delimeter )    {        this->init();    }    explicit basic_istream_line_iterator( istream_type& input )    : m_input_stream( &input ), #if BOOST_WORKAROUND(__GNUC__, < 3) && !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION)    m_delimeter( '\n' )#else    m_delimeter( input.widen( '\n' ) )#endif    {        this->init();    }private:    friend class input_iterator_core_access;    // increment implementation    bool                     get()    {        return std::getline( *m_input_stream, this->m_value, m_delimeter );    }    // Data members    istream_type* m_input_stream;    CharT         m_delimeter;};typedef basic_istream_line_iterator<char>       istream_line_iterator;typedef basic_istream_line_iterator<wchar_t>    wistream_line_iterator;} // namespace unit_test} // namespace boost// ***************************************************************************//  Revision History ://  //  $Log: istream_line_iterator.hpp,v $//  Revision 1.1.1.1  2004/11/20 10:52:24  spion//  Import of Boost v. 1.32.0////  Revision 1.7  2004/09/19 09:22:13  rogeeff//  ios fix for classic iostreams////  Revision 1.6  2004/07/19 12:29:57  rogeeff//  guard rename//  mingw port////  Revision 1.5  2004/06/07 07:33:50  rogeeff//  detail namespace renamed////  Revision 1.4  2004/06/05 11:03:12  rogeeff//  input_iterator_adaptor simplified//  token_iterator added////  Revision 1.3  2004/05/27 07:01:49  rogeeff//  portability workarounds////  Revision 1.2  2004/05/25 10:29:09  rogeeff//  use standard getline//  eliminate initialize//  proper handle \n in wide case////  Revision 1.1  2004/05/21 06:30:10  rogeeff//  ifstream_line_iterator added//// ***************************************************************************#endif // BOOST_ISTREAM_LINE_ITERATOR_HPP_071894GER

⌨️ 快捷键说明

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