CMake模块构建工程

This commit is contained in:
chen
2026-07-02 10:24:20 +00:00
parent e606b9e53c
commit d9813ea8fe
8 changed files with 311 additions and 16 deletions
+20
View File
@@ -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;
}
}