CMake模块构建工程
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
/**
|
||||
* @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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user