blob: 21fe15887cc6d763589b0e58bb5fb24d22bc1927 [file] [log] [blame]
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07001// Boost string_algo library constants.hpp header file ---------------------------//
2
3// Copyright Pavol Droba 2002-2003.
4//
5// Distributed under the Boost Software License, Version 1.0.
6// (See accompanying file LICENSE_1_0.txt or copy at
7// http://www.boost.org/LICENSE_1_0.txt)
8
9// See http://www.boost.org/ for updates, documentation, and revision history.
10
Jeff Thompson3d613fd2013-10-15 15:39:04 -070011#ifndef NDNBOOST_STRING_CONSTANTS_HPP
12#define NDNBOOST_STRING_CONSTANTS_HPP
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070013
14namespace ndnboost {
15 namespace algorithm {
16
17 //! Token compression mode
18 /*!
19 Specifies token compression mode for the token_finder.
20 */
21 enum token_compress_mode_type
22 {
23 token_compress_on, //!< Compress adjacent tokens
24 token_compress_off //!< Do not compress adjacent tokens
25 };
26
27 } // namespace algorithm
28
29 // pull the names to the boost namespace
30 using algorithm::token_compress_on;
31 using algorithm::token_compress_off;
32
33} // namespace ndnboost
34
Jeff Thompson3d613fd2013-10-15 15:39:04 -070035#endif // NDNBOOST_STRING_CONSTANTS_HPP
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070036