ReUseX  0.0.5
3D Point Cloud Processing for Building Reuse
Loading...
Searching...
No Matches
types.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
7// Backward-compatible umbrella header. Historically every TU included
8// <reusex/types.hpp> to get both the PCL point-cloud aliases and the Eigen
9// helpers. Those two groups now live in separate headers so a TU can pull in
10// only what it uses (see issue #218). This umbrella keeps existing includers
11// working by re-exporting both; new code should prefer the narrower headers:
12// - <reusex/types/point_types.hpp> for PCL point-cloud aliases
13// - <reusex/types/eigen_types.hpp> for the Eigen helpers
14#include "reusex/core/stages.hpp"
15#include "reusex/types/eigen_types.hpp"
16#include "reusex/types/point_types.hpp"