blob: 4ac48e8813e7cdfa8443e97483638fe12b6005d6 [file] [log] [blame]
// Copyright 2018 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 GARNET_BIN_IQUERY_FORMATTERS_TEXT_H_
#define GARNET_BIN_IQUERY_FORMATTERS_TEXT_H_
#include <string>
#include <vector>
#include "garnet/bin/iquery/formatter.h"
namespace iquery {
class TextFormatter : public Formatter {
public:
std::string Format(const Options&,
const std::vector<inspect::ObjectSource>&) override;
};
} // namespace iquery
#endif // GARNET_BIN_IQUERY_FORMATTERS_TEXT_H_