aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi/src/vespa/documentapi/messagebus/messages/updatedocumentreply.cpp
blob: a9afc6a4761ffe73ced736e54dc424952c24981b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "updatedocumentreply.h"
#include <vespa/documentapi/messagebus/documentprotocol.h>

namespace documentapi {

UpdateDocumentReply::UpdateDocumentReply() :
    WriteDocumentReply(DocumentProtocol::REPLY_UPDATEDOCUMENT),
    _found(true)
{}

}