hce-node application  1.4.3
HCE Hierarchical Cluster Engine node application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
IcuPlugin.hpp
Go to the documentation of this file.
1 
6 #ifndef _ICU_PLUGIN_HPP
7 #define _ICU_PLUGIN_HPP
8 
9 
10 
11 #include <unicode/brkiter.h>
12 #include <unicode/locid.h>
13 
17 #include "TPlugin.hpp"
18 #include "LCoreData.hpp"
19 
20 namespace HCE
21 {
22 
23 namespace component
24 {
25 
26 
27 class IcuPlugin : public TPlugin
28 {
29 public:
30  IcuPlugin();
31  virtual ~IcuPlugin();
32 public:
33  virtual void process(LCoreData&);
34 private:
35  UErrorCode _status;
36  BreakIterator* _boundary;
37 };
38 
39 
40 } /* namespace component */
41 
42 } /* namespace HCE */
43 #endif