Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-22 09:55:53

0001 //  Boost string_algo library constants.hpp header file  ---------------------------//
0002 
0003 //  Copyright Pavol Droba 2002-2003.
0004 //
0005 // Distributed under the Boost Software License, Version 1.0.
0006 //    (See accompanying file LICENSE_1_0.txt or copy at
0007 //          http://www.boost.org/LICENSE_1_0.txt)
0008 
0009 //  See http://www.boost.org/ for updates, documentation, and revision history.
0010 
0011 #ifndef BOOST_STRING_CONSTANTS_HPP
0012 #define BOOST_STRING_CONSTANTS_HPP
0013 
0014 namespace boost {
0015     namespace algorithm {
0016 
0017     //! Token compression mode 
0018     /*!
0019         Specifies token compression mode for the token_finder.
0020     */
0021     enum token_compress_mode_type
0022     {
0023         token_compress_on,    //!< Compress adjacent tokens
0024         token_compress_off  //!< Do not compress adjacent tokens
0025     };
0026     
0027     } // namespace algorithm
0028 
0029     // pull the names to the boost namespace
0030     using algorithm::token_compress_on;
0031     using algorithm::token_compress_off;
0032 
0033 } // namespace boost
0034 
0035 #endif  // BOOST_STRING_CONSTANTS_HPP
0036