blob: 095c397faa9f9282db486cd7d0c7376b15242e2b [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_TRACEPATH_TOOL_H_
#define DEBUGD_SRC_TRACEPATH_TOOL_H_
#include <string>
#include <brillo/variant_dictionary.h>
#include "debugd/src/subprocess_tool.h"
namespace debugd {
class TracePathTool : public SubprocessTool {
public:
TracePathTool() = default;
TracePathTool(const TracePathTool&) = delete;
TracePathTool& operator=(const TracePathTool&) = delete;
~TracePathTool() override = default;
std::string Start(const base::ScopedFD& outfd,
const std::string& destination,
const brillo::VariantDictionary& options);
};
} // namespace debugd
#endif // DEBUGD_SRC_TRACEPATH_TOOL_H_