fts-tokenizer-private.h revision 2730605833442b5ddcb261f90b8375fc98201e35
#ifndef FTS_TOKENIZER_PRIVATE_H
#define FTS_TOKENIZER_PRIVATE_H
#include "fts-tokenizer.h"
#define FTS_TOKENIZER_CLASSES_NR 2
struct fts_tokenizer_vfuncs {
};
enum fts_tokenizer_parent_state {
};
struct fts_tokenizer {
const char *name;
const struct fts_tokenizer_vfuncs *v;
int refcount;
struct fts_tokenizer *parent;
const unsigned char *prev_data;
bool prev_reply_finished;
bool skip_parents; /* Return token as is, do not hand to parents. */
};
#endif