blob: dec26cb815d07d4e8fb9f4144266e06f2c53d3c8 [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<ObjectNode>&) override;
};
} // namespace iquery
#endif // GARNET_BIN_IQUERY_FORMATTERS_TEXT_H_