...
This commit is contained in:
20
cxx/asibfm700_mount.cpp
Normal file
20
cxx/asibfm700_mount.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
#include "asibfm700_mount.h"
|
||||
|
||||
namespace asibfm700
|
||||
{
|
||||
|
||||
template <mcc::traits::mcc_range_of_input_char_range R>
|
||||
AsibFM700Mount::AsibFM700Mount(AsibFM700Config config, std::shared_ptr<spdlog::logger> logger, const R& pattern_range)
|
||||
: mcc::utils::MccSpdlogLogger(std::move(logger), pattern_range),
|
||||
_currentConfig(std::move(config)),
|
||||
base_gm_t(std::make_tuple(_currentConfig.astromEngineState),
|
||||
std::make_tuple(_currentConfig.hardwareConfig),
|
||||
std::make_tuple(_currentConfig.pecData),
|
||||
std::make_tuple(std::ref(_astromEngine), std::ref(_pec), std::ref(_hardware)),
|
||||
std::make_tuple(std::ref(_telemetry), std::ref(_hardware), std::ref(_pzFuncs)),
|
||||
std::make_tuple(std::ref(_telemetry), std::ref(_hardware), std::ref(_pzFuncs)))
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
} // namespace asibfm700
|
||||
Reference in New Issue
Block a user