NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
PlotManager.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// JA API的C++接口头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// PlotManager.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/CGMBuilder.hxx>
22
#include <NXOpen/PlotBuilder.hxx>
23
#include <NXOpen/Print3dBuilder.hxx>
24
#include <NXOpen/PrintBuilder.hxx>
25
#include <NXOpen/PrintPDFBuilder.hxx>
26
#include <NXOpen/PrintSVGBuilder.hxx>
27
#include <NXOpen/TaggedObject.hxx>
28
#include <NXOpen/libnxopencpp_exports.hxx>
29
#ifdef _MSC_VER
30
#pragma warning(push)
31
#pragma warning(disable:4996)
32
#endif
33
#ifdef __GNUC__
34
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
35
#endif
36
namespace
NXOpen
37
{
38
class
PlotManager
;
39
class
BasePart
;
40
class
CGMBuilder
;
41
class
PlotBuilder
;
42
class
Print3dBuilder
;
43
class
PrintBuilder
;
44
class
PrintPDFBuilder
;
45
class
PrintSVGBuilder
;
46
class
PlotManagerImpl;
52
class
NXOPENCPPEXPORT
PlotManager
53
{
54
private
:
PlotManagerImpl
* m_plotmanager_impl;
55
private
:
NXOpen::BasePart
* m_owner;
57
public
:
explicit
PlotManager
(
NXOpen::BasePart
*owner);
59
public
:
61
tag_t
Tag
()
const
;
62
public
:
~PlotManager
();
66
public
:
NXOpen::PrintBuilder
*
CreatePrintBuilder
67
(
68
);
72
public
:
NXOpen::PrintPDFBuilder
*
CreatePrintPdfbuilder
73
(
74
);
78
public
:
NXOpen::PlotBuilder
*
CreatePlotBuilder
79
(
80
);
84
public
:
NXOpen::CGMBuilder
*
CreateCgmBuilder
85
(
86
);
90
public
:
NXOpen::Print3dBuilder
*
CreatePrint3dBuilder
91
(
92
);
96
public
:
NXOpen::PrintSVGBuilder
*
CreatePrintSvgbuilder
97
(
98
);
99
};
//lint !e1712 default constructor not defined for class
100
}
101
#ifdef _MSC_VER
102
#pragma warning(pop)
103
#endif
104
#ifdef __GNUC__
105
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
106
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
107
#endif
108
#endif
109
#undef EXPORTLIBRARY