blob: 8921ba58c247948261e279b66c0c88a6f3b5271c [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 SRC_UI_EXAMPLES_TILE_TILE_PARAMS_H_
#define SRC_UI_EXAMPLES_TILE_TILE_PARAMS_H_
#include <string>
#include <vector>
#include "src/lib/fxl/command_line.h"
namespace examples {
struct TileParams {
enum class OrientationMode {
kHorizontal,
kVertical,
};
bool Parse(const fxl::CommandLine& command_line);
OrientationMode orientation_mode = OrientationMode::kHorizontal;
std::vector<std::string> view_urls;
};
} // namespace examples
#endif // SRC_UI_EXAMPLES_TILE_TILE_PARAMS_H_