Sha256: 828247374190932dc5f9488389ae899c090ab2bc864b99a5ecc478d3cbcd6341

Contents?: true

Size: 367 Bytes

Versions: 7

Compression:

Stored size: 367 Bytes

Contents

#ifndef __stop_words_h__
#define __stop_words_h__
#include "token_selector.h"

namespace Preprocessing {
  namespace Text {
    
    class StopWords : public TokenSelector {
    public:
      static const uint32_t file_mark = 'stop';
      uint32_t mark() { return file_mark; }

      StopWords();
      bool select(char *start, char *end);
    };
    
  }
}

#endif

Version data entries

7 entries across 7 versions & 1 rubygems

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