NX Open C++ 参考指南 2406 v1.1
载入中...
搜索中...
未找到
SaveOptions.hxx
1//--------------------------------------------------------------------------
2// Copyright 2024 Siemens
3//--------------------------------------------------------------------------
4// JA API的C++接口头文件
5//--------------------------------------------------------------------------
6//
7// 源文件:
8// SaveOptions.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/TaggedObject.hxx>
22#include <NXOpen/libnxopencpp_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
30namespace NXOpen
31{
32 class SaveOptions;
33 class PartCollection;
34 class SaveOptionsImpl;
40 class NXOPENCPPEXPORT SaveOptions
41 {
42 private: SaveOptionsImpl * m_saveoptions_impl;
43 private: NXOpen::PartCollection* m_owner;
45 public: explicit SaveOptions(NXOpen::PartCollection *owner);
47 public:
49 tag_t Tag() const;
50 public: ~SaveOptions();
55 (
56 bool option
57 );
61 public: bool VisualizationData
62 (
63 );
67 public: void SetTrueShapeData
68 (
69 bool option
70 );
74 public: bool TrueShapeData
75 (
76 );
82 (
83 const NXString & dir
84 );
90 (
91 const char * dir
92 );
98 (
99 );
103 public: bool CgmData
104 (
105 );
109 public: void SetCgmData
110 (
111 bool option
112 );
116 public: bool PdfData
117 (
118 );
122 public: void SetPdfData
123 (
124 bool option
125 );
126 }; //lint !e1712 default constructor not defined for class
127}
128#ifdef _MSC_VER
129#pragma warning(pop)
130#endif
131#ifdef __GNUC__
132#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
133#pragma GCC diagnostic warning "-Wdeprecated-declarations"
134#endif
135#endif
136#undef EXPORTLIBRARY