Sync with 5.2.0
[deliverable/titan.core.git] / common / CharCoding.hh
CommitLineData
970ed795
EL
1///////////////////////////////////////////////////////////////////////////////
2// Copyright (c) 2000-2014 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#ifndef CHARCODING_HH
9#define CHARCODING_HH
10
11/** Character Coding types.
12 * Needed by both the compiler and runtime */
13
14namespace CharCoding {
15
16 enum CharCodingType {
17 UNKNOWN,
18 ASCII,
19 UTF_8,
20 UTF16,
21 UTF16BE,
22 UTF16LE,
23 UTF32,
24 UTF32BE,
25 UTF32LE
26 };
27
28}
29
30#endif /* CHARCODING_HH */
31
This page took 0.042017 seconds and 5 git commands to generate.