🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
UiMotionProfile.hpp
浏览该文件的文档.
1
20
21#pragma once
22
23#include "AstGlobal.h"
24#include "AstGUI/UiObject.hpp"
25
26AST_NAMESPACE_BEGIN
27
33class MotionProfile;
34
35class AST_GUI_API UiMotionProfile: public UiObject
36{
37 Q_OBJECT
38public:
39 UiMotionProfile(QWidget *parent = nullptr);
40 ~UiMotionProfile() = default;
41
42 MotionProfile* getMotionProfile() const;
43private:
44
45};
46
47
48
51AST_NAMESPACE_END
运动定义接口
定义 MotionProfile.hpp:46
定义 UiMotionProfile.hpp:36
与对象关联的 QWidget
定义 UiObject.hpp:36