summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
+
+}