NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
DesignSimulation_Subcase.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// JA API的C++接口头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// DesignSimulation_Subcase.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/DesignSimulation_Container.hxx>
22
#include <NXOpen/libnxopencpp_designsimulation_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
namespace
DesignSimulation
33
{
34
class
Subcase
;
35
}
36
namespace
DesignSimulation
37
{
38
class
Container
;
39
}
40
class
NXObject
;
41
namespace
DesignSimulation
42
{
43
class
_SubcaseBuilder;
44
class
SubcaseImpl;
48
class
NXOPENCPP_DESIGNSIMULATIONEXPORT Subcase :
public
NXOpen::DesignSimulation::Container
49
{
51
public
:
enum
IncludeInOptimization
52
{
53
IncludeInOptimizationTrue
,
54
IncludeInOptimizationFalse
55
};
56
private
:
SubcaseImpl
* m_subcase_impl;
57
private
:
friend
class
_SubcaseBuilder;
58
protected
:
Subcase
();
59
public
:
~Subcase
();
63
public
:
void
AddReference
64
(
65
NXOpen::NXObject
* reference
66
);
70
public
:
void
RemoveReference
71
(
72
NXOpen::NXObject
* reference
73
);
77
public
:
void
GetReferences
78
(
79
std::vector<NXOpen::NXObject *> & references
80
);
84
public
:
NXOpen::DesignSimulation::Subcase::IncludeInOptimization
IsIncludedInOptimization
85
(
86
);
90
public
:
void
SetIncludedInOptimization
91
(
92
NXOpen::DesignSimulation::Subcase::IncludeInOptimization
isIncludedInOptimization
93
);
94
};
95
}
96
}
97
#ifdef _MSC_VER
98
#pragma warning(pop)
99
#endif
100
#ifdef __GNUC__
101
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
102
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
103
#endif
104
#endif
105
#undef EXPORTLIBRARY