NX Open C++ 参考指南 2406 v1.1
载入中...
搜索中...
未找到
Validate_PartNode.hxx
1//--------------------------------------------------------------------------
2// Copyright 2024 Siemens
3//--------------------------------------------------------------------------
4// 用于JA API的C++接口头文件
5//--------------------------------------------------------------------------
6//
7// 源文件:
8// Validate_PartNode.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/TransientObject.hxx>
22#include <NXOpen/libnxopencpp_validate_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 namespace Validate
33 {
34 class PartNode;
35 }
36 class Part;
37 namespace Validate
38 {
39 class PartNodeImpl;
46 class NXOPENCPP_VALIDATEEXPORT PartNode : public NXOpen::TransientObject
47 {
48 private: PartNodeImpl * m_partnode_impl;
50 public: explicit PartNode(void *ptr);
52
55 public: virtual ~PartNode();
60 (
61 );
66 (
67 );
71 public: void SetFileName
72 (
73 const NXString & fileName
74 );
79 (
80 const char * fileName
81 );
85 public: void SetPartObject
86 (
87 NXOpen::Part * partObject
88 );
89 }; //lint !e1712 类未定义默认构造函数
90 }
91}
92#ifdef _MSC_VER
93#pragma warning(pop)
94#endif
95#ifdef __GNUC__
96#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
97#pragma GCC diagnostic warning "-Wdeprecated-declarations"
98#endif
99#endif
100#undef EXPORTLIBRARY