NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Schematic_SystemManager.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// JA API的C++接口头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Schematic_SystemManager.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/Schematic_FileNewApplicationBuilder.hxx>
22
#include <NXOpen/Schematic_SystemContextBuilder.hxx>
23
#include <NXOpen/TaggedObject.hxx>
24
#include <NXOpen/libnxopencpp_schematic_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
Schematic
35
{
36
class
SystemManager
;
37
}
38
class
Session
;
39
namespace
Schematic
40
{
41
class
FileNewApplicationBuilder
;
42
}
43
namespace
Schematic
44
{
45
class
SystemContextBuilder
;
46
}
47
namespace
Schematic
48
{
49
class
SystemManagerImpl;
53
class
NXOPENCPP_SCHEMATICEXPORT
SystemManager
54
{
55
private
:
SystemManagerImpl
* m_systemmanager_impl;
56
private
:
NXOpen::Session
* m_owner;
58
public
:
explicit
SystemManager
(
NXOpen::Session
*owner);
60
public
:
62
tag_t
Tag
()
const
;
63
private
:
static
SystemManager
* theSystemManager;
68
public
:
static
SystemManager
*
GetSystemManager
(
NXOpen::Session
*owner);
69
public
:
~SystemManager
();
73
public
:
NXOpen::Schematic::SystemContextBuilder
*
CreateSystemContextBuilder
74
(
75
);
79
public
:
NXOpen::Schematic::FileNewApplicationBuilder
*
CreateFileNewApplicationBuilder
80
(
81
);
85
public
:
void
SystemContextReload
86
(
87
);
88
};
//lint !e1712 default constructor not defined for class
89
}
90
}
91
#ifdef _MSC_VER
92
#pragma warning(pop)
93
#endif
94
#ifdef __GNUC__
95
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
96
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
97
#endif
98
#endif
99
#undef EXPORTLIBRARY