NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Motion_ProfileBuilder.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// JA API的C++接口头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Motion_ProfileBuilder.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/Fields_ExternalFileProfileBuilder.hxx>
22
#include <NXOpen/Fields_ManualInputProfileBuilder.hxx>
23
#include <NXOpen/Fields_SketchProfileBuilder.hxx>
24
#include <NXOpen/Fields_TimeSeriesProfileBuilder.hxx>
25
#include <NXOpen/Motion_MotionBuilder.hxx>
26
#include <NXOpen/libnxopencpp_motion_exports.hxx>
27
#ifdef _MSC_VER
28
#pragma warning(push)
29
#pragma warning(disable:4996)
30
#endif
31
#ifdef __GNUC__
32
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
33
#endif
34
namespace
NXOpen
35
{
36
namespace
Motion
37
{
38
class
ProfileBuilder
;
39
}
40
namespace
Fields
41
{
42
class
ExternalFileProfileBuilder
;
43
}
44
namespace
Fields
45
{
46
class
ManualInputProfileBuilder
;
47
}
48
namespace
Fields
49
{
50
class
SketchProfileBuilder
;
51
}
52
namespace
Fields
53
{
54
class
TimeSeriesProfileBuilder
;
55
}
56
namespace
Motion
57
{
58
class
MotionBuilder
;
59
}
60
namespace
Motion
61
{
62
class
_ProfileBuilderBuilder;
63
class
ProfileBuilderImpl;
72
class
NXOPENCPP_MOTIONEXPORT ProfileBuilder :
public
NXOpen::Motion::MotionBuilder
73
{
76
public
:
enum
TypeChoices
77
{
78
TypeChoicesSketch
,
79
TypeChoicesExternalFile
,
80
TypeChoicesManualInput
81
};
82
83
public
:
enum
ExternalFileTypeChoices
84
{
85
ExternalFileTypeChoicesTabularData
,
86
ExternalFileTypeChoicesTimeSeries
87
};
88
private
:
ProfileBuilderImpl
* m_profilebuilder_impl;
89
private
:
friend
class
_ProfileBuilderBuilder;
90
protected
:
ProfileBuilder
();
91
public
:
~ProfileBuilder
();
97
public
:
NXOpen::Fields::SketchProfileBuilder
*
SketchProfile
98
(
99
);
105
public
:
NXOpen::Fields::ExternalFileProfileBuilder
*
ExternalFileProfile
106
(
107
);
112
public
:
NXOpen::Fields::TimeSeriesProfileBuilder
*
TimeSeriesProfile
113
(
114
);
120
public
:
NXOpen::Fields::ManualInputProfileBuilder
*
ManualInputProfile
121
(
122
);
127
public
:
NXString
Name
128
(
129
);
134
public
:
void
SetName
135
(
136
const
NXString
& name
137
);
142
void
SetName
143
(
144
const
char
* name
145
);
154
public
:
NXOpen::Motion::ProfileBuilder::TypeChoices
InputType
155
(
156
);
165
public
:
void
SetInputType
166
(
167
NXOpen::Motion::ProfileBuilder::TypeChoices
inputType
168
);
172
public
:
NXOpen::Motion::ProfileBuilder::ExternalFileTypeChoices
FormatType
173
(
174
);
178
public
:
void
SetFormatType
179
(
180
NXOpen::Motion::ProfileBuilder::ExternalFileTypeChoices
formatType
181
);
182
};
183
}
184
}
185
#ifdef _MSC_VER
186
#pragma warning(pop)
187
#endif
188
#ifdef __GNUC__
189
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
190
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
191
#endif
192
#endif
193
#undef EXPORTLIBRARY