From c66fa90a083501cb3a736de5e545413a68e47ae8 Mon Sep 17 00:00:00 2001 From: Henning Baldersheim Date: Tue, 18 Oct 2022 12:50:48 +0000 Subject: Add missing implementations file iflushtarget.cpp --- .../src/vespa/searchcorespi/flush/iflushtarget.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 searchcore/src/vespa/searchcorespi/flush/iflushtarget.cpp diff --git a/searchcore/src/vespa/searchcorespi/flush/iflushtarget.cpp b/searchcore/src/vespa/searchcorespi/flush/iflushtarget.cpp new file mode 100644 index 00000000000..d821e06a2a3 --- /dev/null +++ b/searchcore/src/vespa/searchcorespi/flush/iflushtarget.cpp @@ -0,0 +1,19 @@ +// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. + +#include "iflushtarget.h" + +namespace searchcorespi { + +IFlushTarget::IFlushTarget(const vespalib::string &name) noexcept + : IFlushTarget(name, Type::OTHER, Component::OTHER) +{ } + +IFlushTarget::IFlushTarget(const vespalib::string &name, const Type &type, const Component &component) noexcept + : _name(name), + _type(type), + _component(component) +{ } + +IFlushTarget::~IFlushTarget() = default; + +} -- cgit v1.2.3