NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
AcisImporter.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++ 接口到 JA API 的头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// AcisImporter.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/BaseImporter.hxx>
22
#include <NXOpen/libnxopencpp_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
class
AcisImporter
;
33
class
BaseImporter
;
34
class
_AcisImporterBuilder;
35
class
AcisImporterImpl;
63
class
NXOPENCPPEXPORT AcisImporter :
public
NXOpen::BaseImporter
64
{
65
private
:
AcisImporterImpl
* m_acisimporter_impl;
66
private
:
friend
class
_AcisImporterBuilder;
67
protected
: AcisImporter();
68
public
: ~AcisImporter();
72
public
:
void
SaveSettings
73
(
74
const
NXString
& filename
75
);
79
void
SaveSettings
80
(
81
const
char
* filename
82
);
86
public
:
NXString
SettingsFile
87
(
88
);
92
public
:
void
SetSettingsFile
93
(
94
const
NXString
& filename
95
);
99
void
SetSettingsFile
100
(
101
const
char
* filename
102
);
106
public
:
bool
HealBodies
107
(
108
);
112
public
:
void
SetHealBodies
113
(
114
bool
healBodies
115
);
119
public
:
bool
SimplifyGeometry
120
(
121
);
125
public
:
void
SetSimplifyGeometry
126
(
127
bool
simplifyGeometry
128
);
132
public
:
bool
Optimize
133
(
134
);
138
public
:
void
SetOptimize
139
(
140
bool
optimize
141
);
145
public
:
bool
IncludeWires
146
(
147
);
151
public
:
void
SetIncludeWires
152
(
153
bool
includeWires
154
);
158
public
:
bool
Sew
159
(
160
);
164
public
:
void
SetSew
165
(
166
bool
sew
167
);
171
public
:
bool
FileOpenFlag
172
(
173
);
177
public
:
void
SetFileOpenFlag
178
(
179
bool
doingFileOpen
180
);
181
};
182
}
183
#ifdef _MSC_VER
184
#pragma warning(pop)
185
#endif
186
#ifdef __GNUC__
187
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
188
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
189
#endif
190
#endif
191
#undef EXPORTLIBRARY