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

#include "feedmessage.h"

namespace documentapi {

FeedMessage::FeedMessage() :
    DocumentMessage(),
    _name(),
    _generation(0),
    _increment(0)
{
    // empty
}

FeedMessage::FeedMessage(const string& name, int generation, int increment) :
    DocumentMessage(),
    _name(name),
    _generation(generation),
    _increment(increment)
{
    // empty
}

}