Elly Jones | a44d22d | 2012-01-05 18:05:56 -0500 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
Elly Jones | 1c4c3a1 | 2011-12-20 15:01:59 -0500 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Ben Chan | a0011d8 | 2014-05-13 00:19:29 -0700 | [diff] [blame^] | 5 | #ifndef ROUTE_TOOL_H_ |
| 6 | #define ROUTE_TOOL_H_ |
Elly Jones | 1c4c3a1 | 2011-12-20 15:01:59 -0500 | [diff] [blame] | 7 | |
Ben Chan | a0011d8 | 2014-05-13 00:19:29 -0700 | [diff] [blame^] | 8 | #include <map> |
Elly Jones | 1c4c3a1 | 2011-12-20 15:01:59 -0500 | [diff] [blame] | 9 | #include <string> |
Ben Chan | a0011d8 | 2014-05-13 00:19:29 -0700 | [diff] [blame^] | 10 | #include <vector> |
Elly Jones | 1c4c3a1 | 2011-12-20 15:01:59 -0500 | [diff] [blame] | 11 | |
| 12 | #include <base/basictypes.h> |
| 13 | #include <dbus-c++/dbus.h> |
| 14 | |
| 15 | namespace debugd { |
| 16 | |
| 17 | class RouteTool { |
| 18 | public: |
| 19 | RouteTool(); |
| 20 | ~RouteTool(); |
| 21 | |
Ben Chan | a0011d8 | 2014-05-13 00:19:29 -0700 | [diff] [blame^] | 22 | std::vector<std::string> GetRoutes( |
| 23 | const std::map<std::string, DBus::Variant>& options, DBus::Error* error); |
| 24 | |
Elly Jones | 1c4c3a1 | 2011-12-20 15:01:59 -0500 | [diff] [blame] | 25 | private: |
| 26 | DISALLOW_COPY_AND_ASSIGN(RouteTool); |
| 27 | }; |
| 28 | |
Ben Chan | a0011d8 | 2014-05-13 00:19:29 -0700 | [diff] [blame^] | 29 | } // namespace debugd |
Elly Jones | 1c4c3a1 | 2011-12-20 15:01:59 -0500 | [diff] [blame] | 30 | |
Ben Chan | a0011d8 | 2014-05-13 00:19:29 -0700 | [diff] [blame^] | 31 | #endif // ROUTE_TOOL_H_ |