blob: daf0c1b237e61b088bd62dece293f29565a1e560 [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 "src/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_