Blame view

morfeusz/const.hpp 471 Bytes
Michał Lenart authored
1
2
3
4
5
6
7
8
9
10
11
12
/* 
 * File:   const.hpp
 * Author: lennyn
 *
 * Created on December 3, 2013, 9:04 PM
 */

#ifndef CONST1_HPP
#define	CONST1_HPP

enum MorfeuszCharset {
    UTF8,
Michał Lenart authored
13
14
15
//    UTF16LE,
//    UTF16BE,
//    UTF32,
Michał Lenart authored
16
    ISO8859_2,
Michał Lenart authored
17
18
    CP1250,
    CP852
Michał Lenart authored
19
20
};
Michał Lenart authored
21
22
23
24
25
enum MorfeuszProcessorType {
    GENERATOR,
    ANALYZER
};
Michał Lenart authored
26
27
extern const MorfeuszCharset DEFAULT_MORFEUSZ_CHARSET;
Michał Lenart authored
28
29
extern const unsigned char SHIFT_ORTH_NODE;
Michał Lenart authored
30
31
extern const char HOMONYM_SEPARATOR;
Michał Lenart authored
32
33
#endif	/* CONST_HPP */