blob: f0b749311e04bb02c3e31dde08ae954399d23867 [file] [log] [blame]
Elly Jonesad1e9d92012-07-20 15:39:23 -04001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef NETIF_TOOL_H
6#define NETIF_TOOL_H
7
8#include <string>
9
10#include <base/basictypes.h>
11#include <dbus-c++/dbus.h>
12
13namespace debugd {
14
15class NetifTool {
16 public:
17 NetifTool();
18 ~NetifTool();
19
20 std::string GetInterfaces(DBus::Error* error);
21 private:
22 DISALLOW_COPY_AND_ASSIGN(NetifTool);
23};
24
25}; // namespace debugd
26
27#endif // NETIF_TOOL_H