NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
CAE_Folder.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// JA API的C++接口头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// CAE_Folder.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/NXObject.hxx>
22
#include <NXOpen/libnxopencpp_cae_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
CAE
33
{
34
class
Folder
;
35
}
36
class
NXObject
;
37
namespace
CAE
38
{
39
class
_FolderBuilder;
40
class
FolderImpl;
45
class
NXOPENCPP_CAEEXPORT Folder :
public
NXOpen::NXObject
46
{
47
private
:
FolderImpl
* m_folder_impl;
48
private
:
friend
class
_FolderBuilder;
49
protected
: Folder();
50
public
: ~Folder();
54
public
:
NXOpen::CAE::Folder
*
CreateFolder
55
(
56
const
NXString
& name ,
57
int
folderType
58
);
62
NXOpen::CAE::Folder
*
CreateFolder
63
(
64
const
char
* name ,
65
int
folderType
66
);
70
public
:
void
DeleteObjects
71
(
72
const
std::vector<NXOpen::NXObject *> & objects
73
);
77
public
:
void
AddFolder
78
(
79
NXOpen::CAE::Folder
* subfolder
80
);
84
public
: std::vector<NXOpen::CAE::Folder *>
GetChildFolders
85
(
86
);
90
public
:
void
MoveChildObjectsToThisFolder
91
(
92
const
std::vector<NXOpen::NXObject *> & objects
93
);
97
public
: std::vector<NXOpen::NXObject *>
GetChildObjects
98
(
99
);
103
public
: std::vector<NXOpen::NXObject *>
GetAllChildObjects
104
(
105
);
106
};
107
}
108
}
109
#ifdef _MSC_VER
110
#pragma warning(pop)
111
#endif
112
#ifdef __GNUC__
113
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
114
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
115
#endif
116
#endif
117
#undef EXPORTLIBRARY