Files
LinuxMotion/MotionLib/Src/Axis.cpp
T
2026-07-02 10:24:20 +00:00

20 lines
316 B
C++

/**
* @file Axis.cpp
* @author
* @brief
* @version 0.1
* @date 2026-07-02
*
* @copyright Copyright (c) 2026
*
*/
#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;
}
}