#include "incubator.hpp" #include #include #include #include Q_LOGGING_CATEGORY(logIncubator, "quickshell.incubator", QtWarningMsg); void QsQmlIncubator::statusChanged(QQmlIncubator::Status status) { switch (status) { case QQmlIncubator::Ready: emit this->completed(); break; case QQmlIncubator::Error: emit this->failed(); break; default: break; } }