ReUseX  0.0.1
3D Point Cloud Processing for Building Reuse
Loading...
Searching...
No Matches
assemble.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2025 Povl Filip Sonne-Frederiksen
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5#pragma once
6#include "global-params.hpp"
7
8#include <CLI/CLI.hpp>
9#include <vector>
10namespace fs = std::filesystem;
11
14 std::vector<fs::path> paths_in;
16};
17
22void setup_subcommand_assemble(CLI::App &app);
23
void setup_subcommand_assemble(CLI::App &app)
Setup the assemble subcommand in the CLI application.
int run_subcommand_assemble(SubcommandAssembleOptions const &opt)
Run the assemble subcommand with given options.
const fs::path db
Collection of all options for the assemble subcommand.
Definition assemble.hpp:13
fs::path db_path_out
Output database path.
Definition assemble.hpp:15
std::vector< fs::path > paths_in
Input file paths to assemble.
Definition assemble.hpp:14