19#ifndef QGSTILEDSCENENODE_H 
   20#define QGSTILEDSCENENODE_H 
   72    QList< QgsTiledSceneNode * > 
children()
 const { 
return mChildren; }
 
   80    std::unique_ptr< QgsTiledSceneTile > mTile;
 
   83    QList< QgsTiledSceneNode * > mChildren;
 
 
Allows representing QgsTiledSceneTiles in a hierarchical tree.
 
void addChild(QgsTiledSceneNode *child)
Adds a child to this node.
 
QgsTiledSceneNode & operator=(const QgsTiledSceneNode &other)=delete
 
QgsTiledSceneNode * parentNode() const
Returns the parent of this node.
 
QList< QgsTiledSceneNode * > children() const
Returns this node's children.
 
QgsTiledSceneNode(const QgsTiledSceneNode &other)=delete
 
QgsTiledSceneTile * tile()
Returns the tile associated with the node.
 
Represents an individual tile from a tiled scene data source.