cxx_qt_lib_extras/lib.rs
1// SPDX-FileCopyrightText: 2024 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
2// SPDX-FileContributor: Laurent Montel <laurent.montel@kdab.com>
3//
4// SPDX-License-Identifier: MIT OR Apache-2.0
5
6#[cfg(not(any(cxxqt_qt_version_major = "5", cxxqt_qt_version_major = "6")))]
7compile_error!("cxxqt_qt_version_major must be either \"5\" or \"6\"");
8
9mod core;
10pub use crate::core::*;
11
12mod gui;
13pub use crate::gui::*;