aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/test/dummy_feed_view.cpp
blob: 01920866f9d1e71f03ffded0b23140be21ffa8c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "dummy_feed_view.h"
#include <cassert>

namespace proton::test {

DummyFeedView::DummyFeedView()
    : _docTypeRepo()
{
}

DummyFeedView::DummyFeedView(std::shared_ptr<const document::DocumentTypeRepo> docTypeRepo)
    : _docTypeRepo(std::move(docTypeRepo))
{
}

DummyFeedView::~DummyFeedView() = default;

}