#ifndef TWGLUE_HPP #define TWGLUE_HPP #include #include "Device/PublicFunc.h" struct TwGlue { TwGlue(const std::function& scan, const std::function& cancel, std::function feedmode) : m_scan(scan), m_cancel(cancel),m_feedmode(feedmode){} std::function m_scan; std::function m_cancel; std::function m_feedmode; }; #endif // TWGLUE_HPP