/usr/include/titan/CharCoding.hh is in eclipse-titan 6.3.1-1build1.
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 | /******************************************************************************
* Copyright (c) 2000-2017 Ericsson Telecom AB
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Balasko, Jeno
* Baranyi, Botond
*
******************************************************************************/
#ifndef CHARCODING_HH
#define CHARCODING_HH
/** Character Coding types.
* Needed by both the compiler and runtime */
namespace CharCoding {
enum CharCodingType {
UNKNOWN,
ASCII,
UTF_8,
UTF16,
UTF16BE,
UTF16LE,
UTF32,
UTF32BE,
UTF32LE
};
}
#endif /* CHARCODING_HH */
|