RTC Toolkit  1.0.0
cameraFactory.hpp
Go to the documentation of this file.
1 
12 #ifndef RTCTK_STANDALONETOOLS_RAWRECORDER_CAMERAFACTORY_HPP
13 #define RTCTK_STANDALONETOOLS_RAWRECORDER_CAMERAFACTORY_HPP
14 
15 #include "fitsConverterIf.hpp"
16 #include <string>
17 #include <vector>
18 
25 std::unique_ptr<FitsConverterIf> GetCamera(const std::string& name, const std::string& directory, const bool split_files);
29 std::vector<std::string> ListCameras();
30 
31 #endif //RTCTK_STANDALONETOOLS_RAWRECORDER_CAMERAFACTORY_HPP
wscript.name
name
Definition: wscript:15
fitsConverterIf.hpp
Fits converter Interface.
ListCameras
std::vector< std::string > ListCameras()
Get all available cameras.
Definition: cameraFactory.cpp:46
GetCamera
std::unique_ptr< FitsConverterIf > GetCamera(const std::string &name, const std::string &directory, const bool split_files)
Factory for camera from camera string.
Definition: cameraFactory.cpp:37