blob: d29df98e24695cdfbcece4f1c1e618f8e8e50b42 [file] [log] [blame] [edit]
// Copyright 2012 The ChromiumOS Authors
// 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>
namespace debugd {
class NetifTool {
public:
NetifTool() = default;
NetifTool(const NetifTool&) = delete;
NetifTool& operator=(const NetifTool&) = delete;
~NetifTool() = default;
std::string GetInterfaces();
};
} // namespace debugd
#endif // DEBUGD_SRC_NETIF_TOOL_H_