/usr/include/polybori/literals/CLiteralCodes.h is in libbrial-dev 0.8.5-4.
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 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | // -*- c++ -*-
//*****************************************************************************
/** @file CLiteralCodes.h
*
* @author Alexander Dreyer
* @date 2006-07-04
*
* This file contains a class for codes representing string literals.
*
* @par Copyright:
* (c) 2006 by The PolyBoRi Team
**/
//*****************************************************************************
#ifndef polybori_literals_CLiteralCodes_h_
#define polybori_literals_CLiteralCodes_h_
// include basic definitions
#include <polybori/pbori_defs.h>
BEGIN_NAMESPACE_PBORI
/** @class CLiteralCodes
* @brief This template class defines enumerative codes for the string literals
* defined by the CStringLiterals class.
**/
class CLiteralCodes {
public:
/// Define codes representing string literals
enum literal_codes {
first_code = 0,
empty = first_code,
space,
plus,
term_separator,
times,
comma,
list_separator,
default_variable_name,
variable_head,
variable_tail,
between_list_separator,
last_code
};
};
END_NAMESPACE_PBORI
#endif
|