aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/vbench/vbench/tagger.h
blob: 2fa6b411e1d8f2d1623ae5a8459302f25d2a49c0 (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>
{
    typedef std::unique_ptr<Tagger> UP;
    virtual ~Tagger() {}
};

} // namespace vbench