NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
PartFamily_InstanceDefinition.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// 零件族JA接口的C++头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// PartFamily_InstanceDefinition.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/TransientObject.hxx>
22
#include <NXOpen/PartFamily_FamilyAttribute.hxx>
23
#include <NXOpen/libnxopencpp_partfamily_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
PartFamily
34
{
35
class
InstanceDefinition
;
36
}
37
namespace
PartFamily
38
{
39
class
FamilyAttribute
;
40
}
41
namespace
PartFamily
42
{
43
class
InstanceDefinitionImpl;
48
class
NXOPENCPP_PARTFAMILYEXPORT
InstanceDefinition
:
public
NXOpen::TransientObject
49
{
50
private
: InstanceDefinitionImpl * m_instancedefinition_impl;
52
public
:
explicit
InstanceDefinition
(
void
*ptr);
54
57
public
:
virtual
~InstanceDefinition
();
61
public
:
void
SetValueOfAttribute
62
(
63
NXOpen::PartFamily::FamilyAttribute
* partFamAttr ,
64
const
NXString
& value
65
);
69
void
SetValueOfAttribute
70
(
71
NXOpen::PartFamily::FamilyAttribute
* partFamAttr ,
72
const
char
* value
73
);
77
public
:
NXString
GetValueOfAttribute
78
(
79
NXOpen::PartFamily::FamilyAttribute
* partFamAttr
80
);
81
};
//lint !e1712 default constructor not defined for class
82
}
83
}
84
#ifdef _MSC_VER
85
#pragma warning(pop)
86
#endif
87
#ifdef __GNUC__
88
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
89
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
90
#endif
91
#endif
92
#undef EXPORTLIBRARY