Blame view

morfeusz/ChunkBounds.hpp 370 Bytes
Michał Lenart authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* 
 * File:   ChunkBounds.hpp
 * Author: lennyn
 *
 * Created on June 27, 2014, 10:59 PM
 */

#ifndef CHUNKBOUNDS_HPP
#define	CHUNKBOUNDS_HPP

namespace morfeusz {

    struct ChunkBounds {
        const char* chunkStartPtr;
        const char* wordStartPtr;
        const char* wordEndPtr;
        const char* chunkEndPtr;
    };

}

#endif	/* CHUNKBOUNDS_HPP */