NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Weld_Fillet.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++接口头文件 - 对接JA API
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Weld_Fillet.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/Features_BodyFeature.hxx>
22
#include <NXOpen/INXObject.hxx>
23
#include <NXOpen/Weld_IFeature.hxx>
24
#include <NXOpen/libnxopencpp_weld_exports.hxx>
25
#ifdef _MSC_VER
26
#pragma warning(push)
27
#pragma warning(disable:4996)
28
#endif
29
#ifdef __GNUC__
30
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
31
#endif
32
namespace
NXOpen
33
{
34
namespace
Weld
35
{
36
class
Fillet
;
37
}
38
namespace
Assemblies
39
{
40
class
Component
;
41
}
42
class
BasePart
;
43
class
Body
;
44
namespace
Features
45
{
46
class
BodyFeature
;
47
}
48
class
INXObject
;
49
class
ReferenceSet
;
50
namespace
Weld
51
{
52
class
IFeature
;
53
}
54
namespace
Weld
55
{
56
class
_FilletBuilder;
57
class
FilletImpl;
61
class
NXOPENCPP_WELDEXPORT Fillet :
public
NXOpen::Features::BodyFeature
,
public
virtual
NXOpen::Weld::IFeature
62
{
63
private
:
FilletImpl
* m_fillet_impl;
64
private
:
friend
class
_FilletBuilder;
65
protected
: Fillet();
66
public
: ~Fillet();
68
71
public
:
bool
IsFillet
72
(
73
);
76
79
public
:
void
GetConnectedBodies
80
(
81
std::vector<NXOpen::Body *> & connectedBodies
82
);
84
87
public
:
virtual
void
GetFeatureDiagnostics
88
(
89
std::vector<int> & diagnosticCodes
90
);
94
public
:
virtual
NXString
GetFeatureIconName
95
(
96
);
100
public
:
virtual
int
GetFeatureLayer
101
(
102
);
106
public
:
virtual
int
GetFeatureObjectColor
107
(
108
);
112
public
:
virtual
void
GetFeatureReferenceSets
113
(
114
std::vector<NXOpen::ReferenceSet *> & refSet
115
);
119
public
:
virtual
void
GetFeatureReferenceSetStrings
120
(
121
std::vector<NXString> & refSet
122
);
123
};
124
}
125
}
126
#ifdef _MSC_VER
127
#pragma warning(pop)
128
#endif
129
#ifdef __GNUC__
130
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
131
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
132
#endif
133
#endif
134
#undef EXPORTLIBRARY