Sha256: 2fa46cd375972b105a1c9f284d023eceb1452173308b111071df3404301383aa
Contents?: true
Size: 401 Bytes
Versions: 8
Compression:
Stored size: 401 Bytes
Contents
#ifndef __pos_tag_selector_h__ #define __pos_tag_selector_h__ #include "token_selector.h" namespace Preprocessing { namespace Text { class POSTagSelector : public TokenSelector { public: static const uint32_t file_mark = 'post'; uint32_t mark() { return file_mark; } bool select(char *start, char *end) { return true; } }; } } #endif
Version data entries
8 entries across 8 versions & 1 rubygems