summaryrefslogtreecommitdiffstats
path: root/juniper/src/test/fakerewriter.h
blob: cf78fd28255a1f93dab2e21b51cd15cfbf2748e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/juniper/rewriter.h>
#include <string>

class FakeRewriter: public juniper::IRewriter
{
public:
    FakeRewriter() : _name() {}
    const char* Name() const override;
    juniper::RewriteHandle* Rewrite(uint32_t langid, const char* term) override;
    juniper::RewriteHandle* Rewrite(uint32_t langid, const char* term, size_t length) override;
    const char* NextTerm(juniper::RewriteHandle* exp, size_t& length) override;
private:
    std::string _name;
};