ReUseX  0.0.5
3D Point Cloud Processing for Building Reuse
Loading...
Searching...
No Matches
material.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 <filesystem>
10#include <memory>
11#include <string>
12
13namespace fs = std::filesystem;
14
16 std::string guid; // Optional custom GUID
17 fs::path project; // Project database (empty = output to stdout only)
18 fs::path output_file; // Optional output file
19 bool stdout_output = false; // Output JSON to stdout
20};
21
22void setup_subcommand_create_material(CLI::App &parent, std::shared_ptr<RuxOptions> global_opt);
void setup_subcommand_create_material(CLI::App &parent, std::shared_ptr< RuxOptions > global_opt)
int run_subcommand_create_material(SubcommandCreateMaterialOptions const &opt, const RuxOptions &global_opt)