Code cleanup regarding scenegraphnodes

This commit is contained in:
Alexander Bock
2014-05-05 12:15:20 +02:00
parent ae88c0dd6d
commit 636f5327aa
7 changed files with 29 additions and 29 deletions

View File

@@ -41,8 +41,8 @@ public:
bool initialize();
void setSceneGraph(std::shared_ptr<SceneGraph> sceneGraph);
std::shared_ptr<SceneGraph> sceneGraph();
void setSceneGraph(SceneGraph* sceneGraph);
SceneGraph* sceneGraph();
Camera* camera() const;
@@ -57,7 +57,7 @@ public:
private:
Camera* _mainCamera;
std::shared_ptr<SceneGraph> _sceneGraph;
SceneGraph* _sceneGraph;
};
} // namespace openspace