aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/net/http/state_explorer.cpp
blob: 627b70a92fca347ccc3ee5f628ae38b6cd3d0d52 (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 Yahoo. 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