blob: bc77b2f008244ccaca2eec1ebd1ae5a753ae5be4 [file] [log] [blame]
// Copyright 2016 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 TOPAZ_APP_TERM_TERM_PARAMS_H_
#define TOPAZ_APP_TERM_TERM_PARAMS_H_
#include "lib/fxl/command_line.h"
namespace term {
struct TermParams {
TermParams();
~TermParams();
bool Parse(const fxl::CommandLine& command_line);
std::vector<std::string> command;
uint32_t font_size = 12;
};
} // namespace term
#endif // TOPAZ_APP_TERM_TERM_PARAMS_H_