Files
test2/source/blender/io/csv/IO_csv.hh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
521 B
C++
Raw Normal View History

/* SPDX-FileCopyrightText: 2024 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup csv
*/
#pragma once
#include "BLI_path_utils.hh"
struct PointCloud;
struct ReportList;
namespace blender::io::csv {
struct CSVImportParams {
/** Full path to the source CSV file to import. */
char filepath[FILE_MAX];
char delimiter = ',';
ReportList *reports = nullptr;
};
PointCloud *import_csv_as_pointcloud(const CSVImportParams &import_params);
} // namespace blender::io::csv