// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #include "documentreply.h" #include #include namespace documentapi { DocumentReply::DocumentReply(uint32_t type) : mbus::Reply(), _type(type), _priority(Priority::PRI_NORMAL_3) { } DocumentReply::~DocumentReply() = default; const mbus::string& DocumentReply::getProtocol() const { return DocumentProtocol::NAME; } }