/usr/include/lexertl/enums.hpp is in libpuma-dev 1:1.1+svn20120529-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | // enums.hpp
// Copyright (c) 2005-2011 Ben Hanson (http://www.benhanson.net/)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file licence_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#ifndef LEXERTL_ENUMS_H
#define LEXERTL_ENUMS_H
namespace lexertl
{
enum regex_flags {icase = 1, dot_not_newline = 2};
// 0 = end state, 1 = id, 2 = user id, 3 = push_dfa_index
// 4 = next dfa, 5 = dead state, 6 = dfa_start
enum {end_state_index, id_index, user_id_index, push_dfa_index,
next_dfa_index, dead_state_index, transitions_index};
// Rule flags:
enum feature_flags {bol_bit = 1, eol_bit = 2, skip_bit = 4, again_bit = 8,
recursive_bit = 16};
// End state flags:
enum {end_state_bit = 1, pop_dfa_bit = 2};
}
#endif
|