ReUseX  0.0.1
3D Point Cloud Processing for Building Reuse
Loading...
Searching...
No Matches
export.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>
9namespace fs = std::filesystem;
10
13 fs::path cloud_path_in;
15 fs::path path_out = fs::current_path() / "cloud.3dm";
16};
17
18// We could manually make a few variables and use shared pointers for each; this
19// is just done this way to be nicely organized
20
21// Function declarations.
22void setup_subcommand_export(CLI::App &app);
int run_subcommand_export(SubcommandExportOptions const &opt)
void setup_subcommand_export(CLI::App &app)
Collection of all options of Subcommand A.
Definition export.hpp:12