ReUseX  0.0.1
3D Point Cloud Processing for Building Reuse
Loading...
Searching...
No Matches
IData.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
7namespace ReUseX::vision {
8/* IData is an interface for data objects in the ReUseX vision module.
9 * It is designed to be inherited by specific data types that will implement
10 * the necessary functionality for handling vision-related data.
11 */
12struct IData {
13 /* * Virtual destructor to ensure proper cleanup of derived classes.
14 */
15 virtual ~IData() = default;
16};
17} // namespace ReUseX::vision
virtual ~IData()=default