Blame view

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

#ifndef MORFEUSZOPTIONS_HPP
#define	MORFEUSZOPTIONS_HPP

#include "const.hpp"
Michał Lenart authored
13
14
namespace morfeusz {
Michał Lenart authored
15
16
17
/**
 * Represents options for Morfeusz analyzer/generator.
 */
Michał Lenart authored
18
19
20
struct MorfeuszOptions {
    bool caseSensitive;
    MorfeuszCharset encoding;
Michał Lenart authored
21
    bool debug;
Michał Lenart authored
22
23
};
Michał Lenart authored
24
25
}
Michał Lenart authored
26
27
#endif	/* MORFEUSZOPTIONS_HPP */