aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/eventlog/dumper/tunable_event_processor.h
diff options
context:
space:
mode:
authorqrort <qrort@yandex-team.com>2022-11-30 23:47:12 +0300
committerqrort <qrort@yandex-team.com>2022-11-30 23:47:12 +0300
commit22f8ae0e3f5d68b92aecccdf96c1d841a0334311 (patch)
treebffa27765faf54126ad44bcafa89fadecb7a73d7 /library/cpp/eventlog/dumper/tunable_event_processor.h
parent332b99e2173f0425444abb759eebcb2fafaa9209 (diff)
downloadydb-22f8ae0e3f5d68b92aecccdf96c1d841a0334311.tar.gz
validate canons without yatest_common
Diffstat (limited to 'library/cpp/eventlog/dumper/tunable_event_processor.h')
-rw-r--r--library/cpp/eventlog/dumper/tunable_event_processor.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/library/cpp/eventlog/dumper/tunable_event_processor.h b/library/cpp/eventlog/dumper/tunable_event_processor.h
new file mode 100644
index 0000000000..b56eae9222
--- /dev/null
+++ b/library/cpp/eventlog/dumper/tunable_event_processor.h
@@ -0,0 +1,19 @@
+#pragma once
+
+#include <library/cpp/eventlog/eventlog.h>
+
+namespace NLastGetopt {
+ class TOpts;
+}
+
+class ITunableEventProcessor: public IEventProcessor {
+public:
+ virtual void SetEventProcessor(IEventProcessor* /*processor*/) {
+ }
+
+ virtual void AddOptions(NLastGetopt::TOpts& opts) = 0;
+ virtual void CheckOptions() {
+ }
+ virtual ~ITunableEventProcessor() {
+ }
+};