blob: 3d793dba92c8e020007d90c8512c62e0e4dec855 [file] [log] [blame]
// Copyright 2019 The Fuchsia 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 SRC_DEVELOPER_TRACE2JSON_CONVERT_H_
#define SRC_DEVELOPER_TRACE2JSON_CONVERT_H_
#include <string>
struct ConvertSettings {
std::string input_file_name;
std::string output_file_name;
bool compressed_input = false;
bool compressed_output = false;
};
bool ConvertTrace(ConvertSettings);
#endif // SRC_DEVELOPER_TRACE2JSON_CONVERT_H_