strusAnalyzer  0.17
postagger_std.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 Patrick P. Frey
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
10 #ifndef _STRUS_ANALYZER_LIB_POS_TAGGER_STD_HPP_INCLUDED
11 #define _STRUS_ANALYZER_LIB_POS_TAGGER_STD_HPP_INCLUDED
12 #include <string>
13 #include <vector>
14 
16 namespace strus
17 {
18 
20 class TokenizerFunctionInstanceInterface;
22 class ErrorBufferInterface;
24 class PosTaggerDataInterface;
26 class PosTaggerInterface;
27 
28 
33 PosTaggerDataInterface* createPosTaggerData_standard( TokenizerFunctionInstanceInterface* tokenizer, ErrorBufferInterface* errorhnd);
34 
38 PosTaggerInterface* createPosTagger_standard( ErrorBufferInterface* errorhnd);
39 
40 }//namespace
41 #endif
42 
PosTaggerInterface * createPosTagger_standard(ErrorBufferInterface *errorhnd)
Create an interface for the construction of a POS tagger instance for a specified segmenter...
PosTaggerDataInterface * createPosTaggerData_standard(TokenizerFunctionInstanceInterface *tokenizer, ErrorBufferInterface *errorhnd)
Create an interface for building up the data to tag documents with.