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

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