NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Features_MathIntegrationBuilder.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++接口头文件——JA API
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Features_MathIntegrationBuilder.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/Expression.hxx>
22
#include <NXOpen/Features_FeatureBuilder.hxx>
23
#include <NXOpen/libnxopencpp_features_exports.hxx>
24
#ifdef _MSC_VER
25
#pragma warning(push)
26
#pragma warning(disable:4996)
27
#endif
28
#ifdef __GNUC__
29
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
30
#endif
31
namespace
NXOpen
32
{
33
namespace
Features
34
{
35
class
MathIntegrationBuilder
;
36
}
37
class
Expression
;
38
namespace
Features
39
{
40
class
FeatureBuilder
;
41
}
42
namespace
Features
43
{
44
class
_MathIntegrationBuilderBuilder;
45
class
MathIntegrationBuilderImpl;
69
class
NXOPENCPP_FEATURESEXPORT MathIntegrationBuilder :
public
NXOpen::Features::FeatureBuilder
70
{
72
public
:
enum
LocationTypes
73
{
74
LocationTypesOperatingSystem
,
75
LocationTypesTeamcenter
,
76
LocationTypesEmbedded
77
};
78
79
public
:
enum
AssociativityTypes
80
{
81
AssociativityTypesNone
,
82
AssociativityTypesNew
,
83
AssociativityTypesExisting
84
};
85
private
:
MathIntegrationBuilderImpl
* m_mathintegrationbuilder_impl;
86
private
:
friend
class
_MathIntegrationBuilderBuilder;
87
protected
:
MathIntegrationBuilder
();
88
public
:
~MathIntegrationBuilder
();
92
public
:
NXOpen::Features::MathIntegrationBuilder::LocationTypes
Location
93
(
94
);
98
public
:
void
SetLocation
99
(
100
NXOpen::Features::MathIntegrationBuilder::LocationTypes
location
101
);
105
public
:
NXString
FileBrowser
106
(
107
);
111
public
:
void
SetFileBrowser
112
(
113
const
NXString
& filename
114
);
118
void
SetFileBrowser
119
(
120
const
char
* filename
121
);
125
public
:
NXString
NativeFileBrowser
126
(
127
);
131
public
:
void
SetNativeFileBrowser
132
(
133
const
NXString
& filename
134
);
138
void
SetNativeFileBrowser
139
(
140
const
char
* filename
141
);
145
public
:
int
EmbeddedWorksheet
146
(
147
);
151
public
:
void
SetEmbeddedWorksheet
152
(
153
int
embeddedWorksheet
154
);
158
public
:
bool
EmbedWorksheet
159
(
160
);
164
public
:
void
SetEmbedWorksheet
165
(
166
bool
embedWorksheet
167
);
171
public
:
bool
Associative
172
(
173
);
177
public
:
void
SetAssociative
178
(
179
bool
associative
180
);
184
public
:
NXOpen::Features::MathIntegrationBuilder::AssociativityTypes
AssociativityType
185
(
186
);
190
public
:
void
SetAssociativityType
191
(
192
NXOpen::Features::MathIntegrationBuilder::AssociativityTypes
associativityType
193
);
197
public
:
bool
ShowInformationWindow
198
(
199
);
203
public
:
void
SetShowInformationWindow
204
(
205
bool
showInformationWindow
206
);
210
public
:
int
Inputs
211
(
212
);
216
public
:
void
SetInputs
217
(
218
int
numInputExpressions
219
);
223
public
: std::vector<NXOpen::Expression *>
GetExpressions
224
(
225
);
229
public
:
void
SetExpressions
230
(
231
const
std::vector<NXOpen::Expression *> & expressions
232
);
236
public
: std::vector<NXString>
GetMathNames
237
(
238
);
242
public
:
void
SetMathNames
243
(
244
const
std::vector<NXString> & names
245
);
249
public
:
NXString
Worksheet
250
(
251
);
255
public
:
void
SetWorksheet
256
(
257
const
NXString
& sheetName
258
);
262
void
SetWorksheet
263
(
264
const
char
* sheetName
265
);
266
};
267
}
268
}
269
#ifdef _MSC_VER
270
#pragma warning(pop)
271
#endif
272
#ifdef __GNUC__
273
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
274
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
275
#endif
276
#endif
277
#undef EXPORTLIBRARY