indentation problem in the generated code
[deliverable/titan.core.git] / common / CharCoding.hh
1 /******************************************************************************
2 * Copyright (c) 2000-2016 Ericsson Telecom AB
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Balasko, Jeno
10 * Baranyi, Botond
11 *
12 ******************************************************************************/
13 #ifndef CHARCODING_HH
14 #define CHARCODING_HH
15
16 /** Character Coding types.
17 * Needed by both the compiler and runtime */
18
19 namespace CharCoding {
20
21 enum CharCodingType {
22 UNKNOWN,
23 ASCII,
24 UTF_8,
25 UTF16,
26 UTF16BE,
27 UTF16LE,
28 UTF32,
29 UTF32BE,
30 UTF32LE
31 };
32
33 }
34
35 #endif /* CHARCODING_HH */
36
This page took 0.030384 seconds and 5 git commands to generate.