NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Report_CommandManager.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// JA API的C++接口头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Report_CommandManager.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/Report_Command.hxx>
22
#include <NXOpen/Report_CommandImporter.hxx>
23
#include <NXOpen/Report_CommandLibrary.hxx>
24
#include <NXOpen/TaggedObject.hxx>
25
#include <NXOpen/libnxopencpp_report_exports.hxx>
26
#ifdef _MSC_VER
27
#pragma warning(push)
28
#pragma warning(disable:4996)
29
#endif
30
#ifdef __GNUC__
31
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
32
#endif
33
namespace
NXOpen
34
{
35
namespace
Report
36
{
37
class
CommandManager
;
38
}
39
namespace
Report
40
{
41
class
ReportManager
;
42
}
43
namespace
Report
44
{
45
class
Command
;
46
}
47
namespace
Report
48
{
49
class
CommandBuilder
;
50
}
51
namespace
Report
52
{
53
class
CommandImporter
;
54
}
55
namespace
Report
56
{
57
class
CommandLibrary
;
58
}
59
class
TaggedObject
;
60
namespace
Report
61
{
62
class
CommandManagerImpl;
66
class
NXOPENCPP_REPORTEXPORT
CommandManager
67
{
68
private
:
CommandManagerImpl
* m_commandmanager_impl;
69
private
:
NXOpen::Report::ReportManager
* m_owner;
71
public
:
explicit
CommandManager
(
NXOpen::Report::ReportManager
*owner);
73
public
:
75
tag_t
Tag
()
const
;
76
public
:
~CommandManager
();
80
public
:
void
ExportCommandsToLibraryFile
81
(
82
const
std::vector<NXOpen::Report::Command *> & pCommands ,
83
const
NXString
& libraryFile
84
);
88
void
ExportCommandsToLibraryFile
89
(
90
const
std::vector<NXOpen::Report::Command *> & pCommands ,
91
const
char
* libraryFile
92
);
96
public
:
void
GetCommandLibraries
97
(
98
std::vector<NXOpen::Report::CommandLibrary *> & pCommandLibraries
99
);
103
public
:
NXOpen::Report::CommandBuilder
*
CreateCommandBuilder
104
(
105
NXOpen::Report::CommandLibrary
* commandLibrary ,
106
NXOpen::Report::Command
* command
107
);
111
public
:
NXOpen::Report::CommandImporter
*
NewCommandImporter
112
(
113
NXOpen::Report::CommandLibrary
* pCommandLibrary ,
114
const
NXString
& libraryFile
115
);
119
NXOpen::Report::CommandImporter
*
NewCommandImporter
120
(
121
NXOpen::Report::CommandLibrary
* pCommandLibrary ,
122
const
char
* libraryFile
123
);
127
public
:
NXOpen::TaggedObject
*
Find
128
(
129
const
NXString
& journalIdentifier
130
);
134
NXOpen::TaggedObject
*
Find
135
(
136
const
char
* journalIdentifier
137
);
138
};
//lint !e1712 default constructor not defined for class
139
}
140
}
141
#ifdef _MSC_VER
142
#pragma warning(pop)
143
#endif
144
#ifdef __GNUC__
145
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
146
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
147
#endif
148
#endif
149
#undef EXPORTLIBRARY