aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/coroutine/dns/coro.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/coroutine/dns/coro.h')
-rw-r--r--library/cpp/coroutine/dns/coro.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/library/cpp/coroutine/dns/coro.h b/library/cpp/coroutine/dns/coro.h
deleted file mode 100644
index 62a01891b8..0000000000
--- a/library/cpp/coroutine/dns/coro.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#pragma once
-
-#include "iface.h"
-
-#include <util/generic/ptr.h>
-#include <util/generic/ylimits.h>
-
-class TContExecutor;
-
-namespace NAsyncDns {
- class TContResolver {
- public:
- TContResolver(TContExecutor* e, const TOptions& opts = TOptions());
- ~TContResolver();
-
- void Resolve(const TNameRequest& hreq);
-
- private:
- class TImpl;
- THolder<TImpl> I_;
- };
-}