aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/vbench/vbench/tagger.h
blob: 6e332fb9e10636b55ad942b9ae285a2d63e9d028 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. 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