aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi/src/vespa/documentapi/messagebus/messages/feedreply.cpp
blob: 061a4795c20267a4e06f5312288a2358ae19ee3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "feedreply.h"

namespace documentapi {

FeedReply::FeedReply(uint32_t type) :
    DocumentReply(type),
    _feedAnswers()
{
    // empty
}

FeedReply::FeedReply(uint32_t type, const std::vector<FeedAnswer> &feedAnswers) :
    DocumentReply(type),
    _feedAnswers(feedAnswers)
{
    // empty
}

}