Blame view

morfeusz/MorfeuszOptions.hpp 481 Bytes
Michał Lenart authored
1
2
3
4
5
6
7
8
9
10
/* 
 * File:   MorfeuszOptions.hpp
 * Author: mlenart
 *
 * Created on December 7, 2013, 9:36 PM
 */

#ifndef MORFEUSZOPTIONS_HPP
#define	MORFEUSZOPTIONS_HPP
Michał Lenart authored
11
#include "morfeusz2.h"
Michał Lenart authored
12
Michał Lenart authored
13
14
namespace morfeusz {
Michał Lenart authored
15
16
17
/**
 * Represents options for Morfeusz analyzer/generator.
 */
Michał Lenart authored
18
struct MorfeuszOptions {
Michał Lenart authored
19
    CaseHandling caseHandling;
Michał Lenart authored
20
    Charset encoding;
Michał Lenart authored
21
    TokenNumbering tokenNumbering;
Michał Lenart authored
22
    WhitespaceHandling whitespaceHandling;
Michał Lenart authored
23
    bool debug;
Michał Lenart authored
24
25
};
Michał Lenart authored
26
27
}
Michał Lenart authored
28
29
#endif	/* MORFEUSZOPTIONS_HPP */