aboutsummaryrefslogtreecommitdiffstats
path: root/staging_vespalib/src/vespa/vespalib/net/state_explorer.cpp
blob: 42b4c27433721dbe3d5fcfb242337a0874b24f7f (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "state_explorer.h"

namespace vespalib {

std::vector<vespalib::string>
StateExplorer::get_children_names() const
{
    return std::vector<vespalib::string>();
}
 
std::unique_ptr<StateExplorer>
StateExplorer::get_child(vespalib::stringref) const
{
    return std::unique_ptr<StateExplorer>(nullptr);
}

StateExplorer::~StateExplorer()
{
}

} // namespace vespalib