aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/test/dummy_flush_target.cpp
blob: e2d4890ea30e0c8a6479cb96546c39d357b40420 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Vespa.ai. 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::LeafFlushTarget(name, Type::OTHER, Component::OTHER)
{}
DummyFlushTarget::DummyFlushTarget(const vespalib::string &name, const Type &type, const Component &component) noexcept
    : searchcorespi::LeafFlushTarget(name, type, component)
{}
DummyFlushTarget::~DummyFlushTarget() = default;

}