aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storageframework/generic/status/statusreporter.cpp
blob: 2626c4f2346524467d584658c50810f8661a50c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "statusreporter.h"

namespace storage {
namespace framework {

StatusReporter::StatusReporter(vespalib::stringref id, vespalib::stringref name)
    : _id(id),
      _name(name)
{
}

StatusReporter::~StatusReporter()
{
}

} // framework
} // storage