NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
VirtuallabImporter.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// 用于JA API的C++接口头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// VirtuallabImporter.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/Builder.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
VirtuallabImporter
;
33
class
Builder
;
34
class
_VirtuallabImporterBuilder;
35
class
VirtuallabImporterImpl;
51
class
NXOPENCPPEXPORT VirtuallabImporter :
public
NXOpen::Builder
52
{
53
private
:
VirtuallabImporterImpl
* m_virtuallabimporter_impl;
54
private
:
friend
class
_VirtuallabImporterBuilder;
55
protected
: VirtuallabImporter();
56
public
: ~VirtuallabImporter();
60
public
:
void
SaveSettings
61
(
62
const
NXString
& filename
63
);
67
void
SaveSettings
68
(
69
const
char
* filename
70
);
74
public
:
NXString
SettingsFile
75
(
76
);
80
public
:
void
SetSettingsFile
81
(
82
const
NXString
& filename
83
);
87
void
SetSettingsFile
88
(
89
const
char
* filename
90
);
94
public
:
bool
UseFileDirectory
95
(
96
);
100
public
:
void
SetUseFileDirectory
101
(
102
bool
useFileDirectory
103
);
107
public
:
NXString
OutputDirectory
108
(
109
);
113
public
:
void
SetOutputDirectory
114
(
115
const
NXString
& outputDirectory
116
);
120
void
SetOutputDirectory
121
(
122
const
char
* outputDirectory
123
);
127
public
:
bool
SkipTranslatedParts
128
(
129
);
133
public
:
void
SetSkipTranslatedParts
134
(
135
bool
skipTranslatedParts
136
);
140
public
:
bool
ApplyUnits
141
(
142
);
146
public
:
void
SetApplyUnits
147
(
148
bool
applyUnits
149
);
153
public
:
bool
UseEnglishForPartUnits
154
(
155
);
159
public
:
void
SetUseEnglishForPartUnits
160
(
161
bool
useEnglishForPartUnits
162
);
163
};
164
}
165
#ifdef _MSC_VER
166
#pragma warning(pop)
167
#endif
168
#ifdef __GNUC__
169
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
170
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
171
#endif
172
#endif
173
#undef EXPORTLIBRARY