blob: a7bd2eb8a4c18810b4b0cac7e230d22a03588541 [file] [log] [blame]
Elly Jonesa44d22d2012-01-05 18:05:56 -05001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Elly Jones1c4c3a12011-12-20 15:01:59 -05002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Alex Vakulenko262be3f2014-07-30 15:25:50 -07005#ifndef DEBUGD_SRC_ROUTE_TOOL_H_
6#define DEBUGD_SRC_ROUTE_TOOL_H_
Elly Jones1c4c3a12011-12-20 15:01:59 -05007
8#include <string>
Ben Chana0011d82014-05-13 00:19:29 -07009#include <vector>
Elly Jones1c4c3a12011-12-20 15:01:59 -050010
Ben Chan657bed82014-09-02 20:40:51 -070011#include <base/macros.h>
Eric Carusocc7106c2017-04-27 14:22:42 -070012#include <brillo/variant_dictionary.h>
Elly Jones1c4c3a12011-12-20 15:01:59 -050013
14namespace debugd {
15
16class RouteTool {
17 public:
Ben Chan78f89532014-08-29 09:35:09 -070018 RouteTool() = default;
Qijiang Fan6bc59e12020-11-11 02:51:06 +090019 RouteTool(const RouteTool&) = delete;
20 RouteTool& operator=(const RouteTool&) = delete;
21
Ben Chan78f89532014-08-29 09:35:09 -070022 ~RouteTool() = default;
Elly Jones1c4c3a12011-12-20 15:01:59 -050023
Eric Carusocc7106c2017-04-27 14:22:42 -070024 std::vector<std::string> GetRoutes(const brillo::VariantDictionary& options);
Elly Jones1c4c3a12011-12-20 15:01:59 -050025};
26
Ben Chana0011d82014-05-13 00:19:29 -070027} // namespace debugd
Elly Jones1c4c3a12011-12-20 15:01:59 -050028
Alex Vakulenko262be3f2014-07-30 15:25:50 -070029#endif // DEBUGD_SRC_ROUTE_TOOL_H_