RAMSES Documentation  27.0.130
Information for RAMSES users and developers
RenderGroupMeshIterator.h
Go to the documentation of this file.
1 // -------------------------------------------------------------------------
2 // Copyright (C) 2014 BMW Car IT GmbH
3 // -------------------------------------------------------------------------
4 // This Source Code Form is subject to the terms of the Mozilla Public
5 // License, v. 2.0. If a copy of the MPL was not distributed with this
6 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
7 // -------------------------------------------------------------------------
8 
9 #ifndef RAMSES_RENDERGROUPMESHITERATOR_H
10 #define RAMSES_RENDERGROUPMESHITERATOR_H
11 
13 
14 namespace ramses
15 {
16  class RenderGroup;
17  class MeshNode;
18  class MeshNodeImpl;
19  template <typename T>
20  class IteratorImpl;
21 
26  {
27  public:
33  explicit RenderGroupMeshIterator(const RenderGroup& renderGroup);
34 
39 
48  const MeshNode* getNext();
49 
50  private:
52  RenderGroupMeshIterator& operator=(const RenderGroupMeshIterator& iterator);
54  };
55 }
56 
57 #endif
#define RAMSES_API
Definition: APIExport.h:35
Definition: RenderGroupMeshIterator.h:20
The MeshNode holds all information which is needed to render an object to the screen.
Definition: MeshNode.h:25
The RenderGroupMeshIterator traverses MeshNodes in a RenderGroup.
Definition: RenderGroupMeshIterator.h:26
const MeshNode * getNext()
Iterate through all MeshNodes. MeshNodes will be iterated over in order of adding,...
RenderGroupMeshIterator(const RenderGroup &renderGroup)
RenderGroupMeshIterator constructor.
The RenderGroup is a container used to collect renderables which are supposed to be rendered together...
Definition: RenderGroup.h:31
The RAMSES namespace contains all client side objects and functions used to implement RAMSES applicat...
Definition: AnimatedProperty.h:15