20 lines
316 B
C++
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;
|
|
}
|
|
} |