summaryrefslogtreecommitdiff
path: root/src/ingestor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ingestor.hpp')
-rw-r--r--src/ingestor.hpp6
1 files changed, 6 insertions, 0 deletions
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 <c++11Helpers.h>
#include <cstdio>
#include <scn/scan.h>
namespace WebStat {
class Ingestor {
public:
+ Ingestor() = default;
+
+ virtual ~Ingestor() = default;
+ SPECIAL_MEMBERS_DEFAULT_MOVE_NO_COPY(Ingestor);
+
using ScanResult = decltype(scn::scan<std::string_view, std::string_view, uint64_t, std::string_view,
QuotedString, QueryString, std::string_view, unsigned short, unsigned int, unsigned int, CLFString,
CLFString>(std::declval<std::string_view>(), ""));