summaryrefslogtreecommitdiffstats
path: root/src/render/frontend/qlayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/frontend/qlayer.cpp')
-rw-r--r--src/render/frontend/qlayer.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/render/frontend/qlayer.cpp b/src/render/frontend/qlayer.cpp
index f9e43d2be..afef8df3f 100644
--- a/src/render/frontend/qlayer.cpp
+++ b/src/render/frontend/qlayer.cpp
@@ -50,6 +50,26 @@ QLayerPrivate::QLayerPrivate()
{
}
+/*!
+ \class QLayer
+ \inmodule Qt3DRender
+ \since 5.5
+ \brief The QLayer class provides ...
+*/
+
+/*!
+ \qmltype Layer
+ \instantiates Qt3D::QLayer
+ \inherits Component3D
+ \inqmlmodule Qt3D.Render
+ \since 5.5
+ \brief For ...
+*/
+
+
+/*! \fn void Qt3D::QLayer::copy(const QNode *ref)
+ Copies the \a ref instance into this one.
+ */
void QLayer::copy(const QNode *ref)
{
QComponent::copy(ref);
@@ -57,6 +77,10 @@ void QLayer::copy(const QNode *ref)
d_func()->m_names = layer->d_func()->m_names;
}
+/*! \fn Qt3D::QLayer::QLayer(QObject *parent)
+ Constructs a new QLayer with the specified \a parent.
+ */
+
QLayer::QLayer(QNode *parent)
: QComponent(*new QLayerPrivate, parent)
{
@@ -68,6 +92,16 @@ QLayer::QLayer(QLayerPrivate &dd, QNode *parent)
{
}
+/*!
+ \property Qt3D::QLayer::names
+
+ */
+
+/*!
+ \qmlproperty stringlist Qt3D.Render::Layer::names
+
+*/
+
QStringList QLayer::names() const
{
Q_D(const QLayer);