summaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/test/dummy_flush_target.cpp
blob: 8915e3b367cc3d109e8bd824b369cb010a0a6454 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "dummy_flush_target.h"

namespace proton::test {

DummyFlushTarget::DummyFlushTarget(const vespalib::string &name) noexcept
    : searchcorespi::IFlushTarget(name)
{}
DummyFlushTarget::DummyFlushTarget(const vespalib::string &name, const Type &type, const Component &component) noexcept
    : searchcorespi::IFlushTarget(name, type, component)
{}
DummyFlushTarget::~DummyFlushTarget() = default;

}