MobileRT  1.0
A multi platform C++ CPU progressive Ray Tracer.
PerspectiveLoader.hpp
Go to the documentation of this file.
1 #ifndef COMPONENTS_LOADERS_PERSPECTIVELOADER_HPP
2 #define COMPONENTS_LOADERS_PERSPECTIVELOADER_HPP
3 
5 
7 #include <fstream>
8 #include <string>
9 
10 namespace Components {
11 
16  public:
17  ::std::unique_ptr<::MobileRT::Camera> loadFromStream(
18  ::std::istream &&cameraDefinition, float aspectRatio) const final;
19  };
20 }//namespace Components
21 
22 #endif //COMPONENTS_LOADERS_PERSPECTIVELOADER_HPP
Definition: Orthographic.hpp:6
::std::unique_ptr<::MobileRT::Camera > loadFromStream(::std::istream &&cameraDefinition, float aspectRatio) const final
Definition: PerspectiveLoader.cpp:18
Definition: PerspectiveLoader.hpp:15
Definition: CameraLoader.hpp:10