NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Motion_MotionObject.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++接口的JA API头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Motion_MotionObject.ja
9
//
10
// 生成工具:
11
// apiwrap
12
//
13
// 警告:
14
// 此文件由自动生成 - 请勿手动编辑
15
//
16
#pragma once
17
#include <NXOpen/NXDeprecation.hxx>
18
#include <vector>
19
#include <NXOpen/NXString.hxx>
20
#include <NXOpen/Callback.hxx>
21
#include <NXOpen/DisplayableObject.hxx>
22
#include <NXOpen/libnxopencpp_motion_exports.hxx>
23
#ifdef _MSC_VER
24
#pragma warning(push)
25
#pragma warning(disable:4996)
26
#endif
27
#ifdef __GNUC__
28
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
29
#endif
30
namespace
NXOpen
31
{
32
namespace
Motion
33
{
34
class
MotionObject
;
35
}
36
class
DisplayableObject
;
37
namespace
Motion
38
{
39
class
_MotionObjectBuilder;
40
class
MotionObjectImpl;
44
class
NXOPENCPP_MOTIONEXPORT MotionObject :
public
NXOpen::DisplayableObject
45
{
49
public
:
enum
GroupType
50
{
51
GroupTypeNone
,
52
GroupTypeImport
53
};
54
private
:
MotionObjectImpl
* m_motionobject_impl;
55
private
:
friend
class
_MotionObjectBuilder;
56
protected
:
MotionObject
();
57
public
:
~MotionObject
();
61
public
:
double
DisplayScale
62
(
63
);
67
public
:
void
SetDisplayScale
68
(
69
double
displayScale
70
);
74
public
:
NXString
GroupName
75
(
76
);
80
public
:
void
SetGroupName
81
(
82
const
NXString
& groupName
83
);
87
void
SetGroupName
88
(
89
const
char
* groupName
90
);
94
public
:
NXOpen::Motion::MotionObject::GroupType
GroupTypeOption
95
(
96
);
100
public
:
void
SetGroupTypeOption
101
(
102
NXOpen::Motion::MotionObject::GroupType
groupType
103
);
104
};
105
}
106
}
107
#ifdef _MSC_VER
108
#pragma warning(pop)
109
#endif
110
#ifdef __GNUC__
111
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
112
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
113
#endif
114
#endif
115
#undef EXPORTLIBRARY