blob: 95105b905f595b66a0cb2499431d18c3d186eb61 [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef DEBUGD_SRC_NETIF_TOOL_H_
#define DEBUGD_SRC_NETIF_TOOL_H_
#include <string>
#include <base/macros.h>
#include <dbus-c++/dbus.h>
namespace debugd {
class NetifTool {
public:
NetifTool() = default;
~NetifTool() = default;
std::string GetInterfaces(DBus::Error* error);
private:
DISALLOW_COPY_AND_ASSIGN(NetifTool);
};
} // namespace debugd
#endif // DEBUGD_SRC_NETIF_TOOL_H_