aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/vbench/vbench/tagger.h
blob: c38b8fb8171e54892008a165964876edcd9c44e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "request.h"
#include <vbench/core/handler.h>

namespace vbench {

struct Tagger : public Handler<Request>
{
    using UP = std::unique_ptr<Tagger>;
    virtual ~Tagger() {}
};

} // namespace vbench