NX Open C++ 参考指南 2406 v1.1
载入中...
搜索中...
未找到
PartFamily_Template.hxx
1//--------------------------------------------------------------------------
2// Copyright 2024 Siemens
3//--------------------------------------------------------------------------
4// 零件族API的C++接口头文件
5//--------------------------------------------------------------------------
6//
7// 源文件:
8// PartFamily_Template.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/NXObject.hxx>
22#include <NXOpen/PartFamily_FamilyAttribute.hxx>
23#include <NXOpen/libnxopencpp_partfamily_exports.hxx>
24#ifdef _MSC_VER
25#pragma warning(push)
26#pragma warning(disable:4996)
27#endif
28#ifdef __GNUC__
29#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
30#endif
31namespace NXOpen
32{
33 namespace PartFamily
34 {
35 class Template;
36 }
37 class NXObject;
38 namespace PartFamily
39 {
40 class FamilyAttribute;
41 }
42 namespace PartFamily
43 {
44 class _TemplateBuilder;
45 class TemplateImpl;
50 class NXOPENCPP_PARTFAMILYEXPORT Template : public NXOpen::NXObject
51 {
52 private: TemplateImpl * m_template_impl;
53 private: friend class _TemplateBuilder;
54 protected: Template();
55 public: ~Template();
60 public: std::vector<NXOpen::PartFamily::FamilyAttribute *> GetAttributes
61 (
62 );
67 public: std::vector<NXString> GetValidAttributeValues
68 (
70 );
75 (
76 );
80 public: int Version
81 (
82 );
86 public: void GetMembers
87 (
88 std::vector<NXString> & members
89 );
93 public: bool IsValidMemberName
94 (
95 const NXString & memberName
96 );
101 (
102 const char * memberName
103 );
104 };
105 }
106}
107#ifdef _MSC_VER
108#pragma warning(pop)
109#endif
110#ifdef __GNUC__
111#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
112#pragma GCC diagnostic warning "-Wdeprecated-declarations"
113#endif
114#endif
115#undef EXPORTLIBRARY