Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
CharCoding.hh 853 B
/******************************************************************************
 * Copyright (c) 2000-2020 Ericsson Telecom AB
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.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 */