From 52f0880cd05d346120fb3a0a9310592d50ec8bcb Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 23 Aug 2025 15:43:04 +0100 Subject: Setup moveable/non-copyable special members on Ingestor --- src/ingestor.hpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/ingestor.hpp') diff --git a/src/ingestor.hpp b/src/ingestor.hpp index 3bb9ddd..9ae8130 100644 --- a/src/ingestor.hpp +++ b/src/ingestor.hpp @@ -1,12 +1,18 @@ #pragma once #include "logTypes.hpp" +#include #include #include namespace WebStat { class Ingestor { public: + Ingestor() = default; + + virtual ~Ingestor() = default; + SPECIAL_MEMBERS_DEFAULT_MOVE_NO_COPY(Ingestor); + using ScanResult = decltype(scn::scan(std::declval(), "")); -- cgit v1.2.3