Sha256: 3ec71c8a2049df8b42e51c5cc70688fb83a494566d85de00e78ffab2b22dc9d9
Contents?: true
Size: 295 Bytes
Versions: 7
Compression:
Stored size: 295 Bytes
Contents
#ifndef __token_selector_h__ #define __token_selector_h__ #include <stdint.h> namespace Preprocessing { namespace Text { class TokenSelector { public: virtual bool select(char *start, char *end) { return true; } virtual uint32_t mark() = 0; }; } } #endif
Version data entries
7 entries across 7 versions & 1 rubygems