RTC Toolkit 5.0.0
Loading...
Searching...
No Matches
cameraFactory.hpp
Go to the documentation of this file.
1
13#ifndef RTCTK_STANDALONETOOLS_RAWRECORDER_CAMERAFACTORY_HPP
14#define RTCTK_STANDALONETOOLS_RAWRECORDER_CAMERAFACTORY_HPP
15
16#include "fitsConverterIf.hpp"
17#include <string>
18#include <vector>
19
26std::unique_ptr<FitsConverterIf>
27GetCamera(const std::string& name, const std::string& directory, const bool split_files);
31std::vector<std::string> ListCameras();
32
33#endif // RTCTK_STANDALONETOOLS_RAWRECORDER_CAMERAFACTORY_HPP
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:39
std::vector< std::string > ListCameras()
Get all available cameras.
Definition cameraFactory.cpp:48
Fits converter Interface.