cxx-qt-lib 0.9.1

Qt types for integrating `cxx-qt` crate with `cxx`
Documentation
// clang-format off
// SPDX-FileCopyrightText: 2024 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
// clang-format on
// SPDX-FileContributor: Andrew Hayzen <andrew.hayzen@kdab.com>
//
// SPDX-License-Identifier: MIT OR Apache-2.0

#include <cxx-qt-lib/qlist.h>
#include <cxx-qt-lib/qvector.h>

#include <mutex>

extern "C" bool
init_cxx_qt_lib_gui()
{
  static std::once_flag flag;
  std::call_once(flag, []() {
    qRegisterMetaType<::QList_QColor>("QList_QColor");
    qRegisterMetaType<::QVector_QColor>("QVector_QColor");
  });
  return true;
}