blob: f581fa23bc577e761a6f30d78dc38f5acc6ee29f [file] [log] [blame]
// Copyright 2015 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_BATTERY_TOOL_H_
#define DEBUGD_SRC_BATTERY_TOOL_H_
#include <string>
#include "debugd/src/subprocess_tool.h"
namespace debugd {
class BatteryTool : public SubprocessTool {
public:
BatteryTool() = default;
BatteryTool(const BatteryTool&) = delete;
BatteryTool& operator=(const BatteryTool&) = delete;
~BatteryTool() override = default;
std::string BatteryFirmware(const std::string& option);
};
} // namespace debugd
#endif // DEBUGD_SRC_BATTERY_TOOL_H_