NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Join_AttachmentHardware.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++接口至JA API的头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Join_AttachmentHardware.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/Join_PointJoinHardware.hxx>
22
#include <NXOpen/ugmath.hxx>
23
#include <NXOpen/libjoinopencpp_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
Join
34
{
35
class
AttachmentHardware
;
36
}
37
namespace
Join
38
{
39
class
PointJoinHardware
;
40
}
41
namespace
Join
42
{
43
class
_AttachmentHardwareBuilder;
44
class
AttachmentHardwareImpl;
48
class
JOINOPENCPPEXPORT AttachmentHardware :
public
NXOpen::Join::PointJoinHardware
49
{
50
private
:
AttachmentHardwareImpl
* m_attachmenthardware_impl;
51
private
:
friend
class
_AttachmentHardwareBuilder;
52
protected
: AttachmentHardware();
53
public
: ~AttachmentHardware();
57
public
: std::vector<NXOpen::Point3d>
GetConnectionPoint
58
(
59
);
63
public
:
void
SetConnectionPoint
64
(
65
const
std::vector<NXOpen::Point3d> & connections
66
);
70
public
: std::vector<NXOpen::Point3d>
GetBoltPoint
71
(
72
);
76
public
:
void
SetBoltPoint
77
(
78
const
std::vector<NXOpen::Point3d> & bolts
79
);
83
public
:
NXString
Alignment
84
(
85
);
89
public
:
void
SetAlignment
90
(
91
const
NXString
& alignment
92
);
96
void
SetAlignment
97
(
98
const
char
* alignment
99
);
100
};
101
}
102
}
103
#ifdef _MSC_VER
104
#pragma warning(pop)
105
#endif
106
#ifdef __GNUC__
107
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
108
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
109
#endif
110
#endif
111
#undef EXPORTLIBRARY