RTC Toolkit 6.0.0
Loading...
Searching...
No Matches
cameraFactory.hpp
Go to the documentation of this file.
1
11
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
25std::unique_ptr<FitsConverterIf>
26GetCamera(const std::string& name, const std::string& directory, const bool split_files);
30std::vector<std::string> ListCameras();
31
32#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:38
std::vector< std::string > ListCameras()
Get all available cameras.
Definition cameraFactory.cpp:47
Fits converter Interface.