FERS 0.1.0
The Flexible Extensible Radar Simulator
Loading...
Searching...
No Matches
main.cpp
Go to the documentation of this file.
1// SPDX-License-Identifier: GPL-2.0-only
2// Copyright (c) 2025-present FERS Contributors (see AUTHORS.md).
3
4/**
5 * @file main.cpp
6 * @brief Entry point for the FERS command-line interface (CLI).
7 *
8 * This executable acts as a wrapper around the libfers core library. It parses
9 * command-line arguments, uses the libfers C-API to load and run a simulation,
10 * and reports progress to the console.
11 */
12
13#include "cli_runner.h"
14
15int main(const int argc, char* argv[]) { return core::runCli(argc, argv); }
int main(const int argc, char *argv[])
Definition main.cpp:15