NX Open C++ 参考指南 2406 v1.1
载入中...
搜索中...
未找到
CAM_Ude.hxx
1//--------------------------------------------------------------------------
2// Copyright 2024 Siemens
3//--------------------------------------------------------------------------
4// C++ 接口到 JA API 的头文件
5//--------------------------------------------------------------------------
6//
7// 源文件:
8// CAM_Ude.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/CAM_UdeParameter.hxx>
22#include <NXOpen/TaggedObject.hxx>
23#include <NXOpen/libnxopencpp_cam_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 CAM
34 {
35 class Ude;
36 }
37 namespace CAM
38 {
39 class UdeParameter;
40 }
41 namespace CAM
42 {
43 class _UdeBuilder;
44 class UdeImpl;
48 class NXOPENCPP_CAMEXPORT Ude : public NXOpen::TaggedObject
49 {
50 private: UdeImpl * m_ude_impl;
51 private: friend class _UdeBuilder;
52 protected: Ude();
53 public: ~Ude();
58 (
59 );
63 public: void SetUdeName
64 (
65 const NXString & udeName
66 );
71 (
72 const char * udeName
73 );
78 (
79 );
84 (
85 const NXString & parameterName
86 );
91 (
92 const char * parameterName
93 );
97 public: bool OutputLoadTool
98 (
99 );
103 public: void SetOutputLoadTool
104 (
105 bool loadTool
106 );
111 (
112 int index
113 );
117 public: std::vector<NXString> GetParameterNames
118 (
119 );
123 public: bool InitializeFrom
124 (
125 NXOpen::CAM::Ude * udeObjToInitializeFrom
126 );
127 };
128 }
129}
130#ifdef _MSC_VER
131#pragma warning(pop)
132#endif
133#ifdef __GNUC__
134#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
135#pragma GCC diagnostic warning "-Wdeprecated-declarations"
136#endif
137#endif
138#undef EXPORTLIBRARY