summaryrefslogtreecommitdiffstats
path: root/juniper/src/test/fakerewriter.h
blob: 8d09de56644fb7a639a214409e9822c380853f8e (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() {}
    virtual const char* Name() const;
    virtual juniper::RewriteHandle* Rewrite(uint32_t langid, const char* term);
    virtual juniper::RewriteHandle* Rewrite(uint32_t langid, const char* term, size_t length);
    virtual const char* NextTerm(juniper::RewriteHandle* exp, size_t& length);
private:
    std::string _name;
};