// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #pragma once #include namespace proton { class EmptySearchView : public ISearchHandler { public: using SP = std::shared_ptr; EmptySearchView(); std::unique_ptr getDocsums(const DocsumRequest & req) override; std::unique_ptr match(const SearchRequest &req, vespalib::ThreadBundle &threadBundle) const override; }; } // namespace proton