RAMSES Documentation  27.0.130
Information for RAMSES users and developers
SceneIterator.h
Go to the documentation of this file.
1 // -------------------------------------------------------------------------
2 // Copyright (C) 2015 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_SCENEITERATOR_H
10 #define RAMSES_SCENEITERATOR_H
11 
13 
14 namespace ramses
15 {
16  class SceneIteratorImpl;
17  class RamsesClient;
18  class Scene;
19 
26  {
27  public:
33  explicit SceneIterator(const RamsesClient& client);
34 
39 
47 
48  private:
49  SceneIterator(const SceneIterator& iterator);
50  SceneIterator& operator=(const SceneIterator& iterator);
51  SceneIteratorImpl* impl;
52  };
53 }
54 
55 #endif
#define RAMSES_API
Definition: APIExport.h:35
Entry point of RAMSES client API.
Definition: RamsesClient.h:34
The SceneIterator traverses scenes in a RamsesClient.
Definition: SceneIterator.h:26
Scene * getNext()
Returns the next scene while iterating.
SceneIterator(const RamsesClient &client)
A SceneIterator can iterate through scenes of the given client.
The Scene holds a scene graph. It is the essential class for distributing content to the ramses syste...
Definition: Scene.h:83
The RAMSES namespace contains all client side objects and functions used to implement RAMSES applicat...
Definition: AnimatedProperty.h:15