ReUseX  0.0.5
3D Point Cloud Processing for Building Reuse
Loading...
Searching...
No Matches
e57.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
7
8#include <CLI/CLI.hpp>
9#include <filesystem>
10#include <memory>
11#include <string>
12
13namespace fs = std::filesystem;
14
16 std::string cloud_name = "cloud";
17 fs::path output_path;
18 std::string filter_expr;
19};
20
21void setup_subcommand_export_e57(CLI::App &parent,
22 std::shared_ptr<RuxOptions> global_opt);
24 const RuxOptions &global_opt);
int run_subcommand_export_e57(SubcommandExportE57Options const &opt, const RuxOptions &global_opt)
void setup_subcommand_export_e57(CLI::App &parent, std::shared_ptr< RuxOptions > global_opt)
std::string cloud_name
Cloud name in ProjectDB (–name).
Definition e57.hpp:16
std::string filter_expr
Point filter expression (-f).
Definition e57.hpp:18
fs::path output_path
Output .e57 path (-o); default: {cloud_name}.e57.
Definition e57.hpp:17