aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi/src/vespa/documentapi/messagebus/messages/documentignoredreply.h
blob: b766a1f545900f015889cd7bed1e4848762d8ec0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include "documentreply.h"

namespace documentapi {

class DocumentIgnoredReply : public DocumentReply {
public:
    using UP = std::unique_ptr<DocumentIgnoredReply>;
    using SP = std::shared_ptr<DocumentIgnoredReply>;

    DocumentIgnoredReply();

    string toString() const override { return "DocumentIgnoredReply"; }
};

}