ReUseX  0.0.5
3D Point Cloud Processing for Building Reuse
Loading...
Searching...
No Matches
speckle.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 server_url;
17 std::string project_id;
18 std::string commit_message = "ReUseX export";
19 std::string root_folder;
20 std::size_t max_batch_bytes = 25 * 1024 * 1024; // 25 MB
21};
22
23void setup_subcommand_export_speckle(CLI::App &parent, std::shared_ptr<RuxOptions> global_opt);
int run_subcommand_export_speckle(SubcommandExportSpeckleOptions const &opt, const RuxOptions &global_opt)
void setup_subcommand_export_speckle(CLI::App &parent, std::shared_ptr< RuxOptions > global_opt)