MobileRT  1.0
A multi platform C++ CPU progressive Ray Tracer.
CameraFactory.hpp
Go to the documentation of this file.
1 #ifndef COMPONENTS_LOADERS_CAMERAFACTORY_HPP
2 #define COMPONENTS_LOADERS_CAMERAFACTORY_HPP
3 
4 #include "MobileRT/Camera.hpp"
5 
6 namespace Components {
7 
11  class CameraFactory {
12  public:
13  ::std::unique_ptr<::MobileRT::Camera> loadFromFile(::std::istream &isCam, float aspectRatio) const;
14  };
15 }//namespace Components
16 
17 #endif //COMPONENTS_LOADERS_CAMERAFACTORY_HPP
Definition: Orthographic.hpp:6
Definition: CameraFactory.hpp:11
::std::unique_ptr<::MobileRT::Camera > loadFromFile(::std::istream &isCam, float aspectRatio) const
Definition: CameraFactory.cpp:6