/** * @file Axis.cpp * @author * @brief * @version 0.1 * @date 2026-07-02 * * @copyright Copyright (c) 2026 * */ #include #include "Types.h" #include "Axis.h" namespace plcopen { Axis::Axis(UINT axisNo, std::string name) { ref_.axisNo = axisNo; ref_.axisName = std::move(name); ref_.axis = this; } void Axis::cycle() { } }