aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/test/dummy_summary_manager.h
blob: 7d73ebb259010cdc3af7733a7052e9469bd10fd5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/searchcore/proton/docsummary/isummarymanager.h>

namespace proton::test {

struct DummySummaryManager : public ISummaryManager
{
    ISummarySetup::SP
    createSummarySetup(const SummaryConfig &,
                       const JuniperrcConfig &,
                       const std::shared_ptr<const document::DocumentTypeRepo> &,
                       const std::shared_ptr<search::IAttributeManager> &,
                       const search::index::Schema&) override {
        return {};
    }
};

}