summaryrefslogtreecommitdiffstats
path: root/src/Runtime/ogl-runtime/src/viewer/Qt3DSViewerApp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Runtime/ogl-runtime/src/viewer/Qt3DSViewerApp.cpp')
-rw-r--r--src/Runtime/ogl-runtime/src/viewer/Qt3DSViewerApp.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Runtime/ogl-runtime/src/viewer/Qt3DSViewerApp.cpp b/src/Runtime/ogl-runtime/src/viewer/Qt3DSViewerApp.cpp
index 094f140f..4c7be294 100644
--- a/src/Runtime/ogl-runtime/src/viewer/Qt3DSViewerApp.cpp
+++ b/src/Runtime/ogl-runtime/src/viewer/Qt3DSViewerApp.cpp
@@ -910,6 +910,14 @@ float Q3DSViewerApp::dataInputMin(const QString &name) const
return m_Impl.m_view->dataInputMin(name);
}
+QHash<QString, QString> Q3DSViewerApp::dataInputMetadata(const QString &name) const
+{
+ if (!m_Impl.m_view)
+ return {};
+
+ return m_Impl.m_view->dataInputMetadata(name);
+}
+
void Q3DSViewerApp::createElements(const QString &parentElementPath, const QString &slideName,
const QVector<QHash<QString, QVariant>> &properties)
{