Blame view

morfeusz/deserialization/MorphDeserializer.hpp 555 Bytes
Michał Lenart authored
1
2
3
4
/* 
 * File:   MorphDeserializer.hpp
 * Author: mlenart
 *
Michał Lenart authored
5
 * Created on 16 maj 2014, 12:46
Michał Lenart authored
6
7
8
9
10
 */

#ifndef MORPHDESERIALIZER_HPP
#define	MORPHDESERIALIZER_HPP
Michał Lenart authored
11
12
#include "fsa/fsa.hpp"
#include "InterpsGroup.hpp"
Michał Lenart authored
13
#include "InterpsGroupsReader.hpp"
Michał Lenart authored
14
Michał Lenart authored
15
16
namespace morfeusz {
Michał Lenart authored
17
class MorphDeserializer: public Deserializer< InterpsGroupsReader > {
Michał Lenart authored
18
19
20
21
22
public:
    MorphDeserializer();
    virtual ~MorphDeserializer();
    long deserialize(
        const unsigned char* ptr, 
Michał Lenart authored
23
        InterpsGroupsReader& res) const;
Michał Lenart authored
24
25
26
27
private:

};
Michał Lenart authored
28
29
}
Michał Lenart authored
30
31
#endif	/* MORPHDESERIALIZER_HPP */