summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-10-18 12:50:48 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2022-10-18 12:50:48 +0000
commitc66fa90a083501cb3a736de5e545413a68e47ae8 (patch)
tree617d22fca19a9c491c65e64b7ee69d8766166a9c
parent667a368b9f1170d71c71f342d7778b0eaca7d3c8 (diff)
Add missing implementations file iflushtarget.cpp
-rw-r--r--searchcore/src/vespa/searchcorespi/flush/iflushtarget.cpp19
1 files changed, 19 insertions, 0 deletions
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;
+
+}