Blame view

morfeusz/InterpsGroup.hpp 767 Bytes
Michał Lenart authored
1
2
/* 
 * File:   GroupedInterpretations.hpp
Michał Lenart authored
3
 * Author: mlenart
Michał Lenart authored
4
5
6
7
 *
 * Created on November 16, 2013, 7:58 PM
 */
Michał Lenart authored
8
9
#ifndef INTERPSGROUP_HPP
#define	INTERPSGROUP_HPP
Michał Lenart authored
10
11
12
13
14
15
16

#include <vector>
#include <string>
#include "EncodedInterpretation.hpp"
#include "MorphInterpretation.hpp"
#include "Tagset.hpp"
Michał Lenart authored
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
struct InterpsGroup {
//public:
//    
//    InterpsGroup() {
//        
//    }
//    
//    explicit InterpsGroup(const unsigned char type)
//    : type(type) {
//        
//    }
//    
//    void addInterpretation(const EncodedInterpretation& interp) {
//        interps.push_back(interp);
//    }
Michał Lenart authored
32
Michał Lenart authored
33
    unsigned char type;
Michał Lenart authored
34
35
36
    uint16_t size;
    const unsigned char* ptr;
//    std::vector<EncodedInterpretation> interps;
Michał Lenart authored
37
38
39
40
};

#endif	/* GROUPEDINTERPRETATIONS_HPP */