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

Version Path
thera-0.0.7 lib/quarry/src/preprocessing/text/token_selector/token_selector.h
thera-0.0.6 lib/quarry/src/preprocessing/text/token_selector/token_selector.h
thera-0.0.5 lib/quarry/src/preprocessing/text/token_selector/token_selector.h
thera-0.0.4 lib/quarry/src/preprocessing/text/token_selector/token_selector.h
thera-0.0.3 lib/quarry/src/preprocessing/text/token_selector/token_selector.h
thera-0.0.2 lib/quarry/src/preprocessing/text/token_selector/token_selector.h
thera-0.0.1 lib/quarry/src/preprocessing/text/token_selector/token_selector.h