NX Open C++ 参考指南 2406 v1.1
载入中...
搜索中...
未找到
ASCImporter.hxx
1//--------------------------------------------------------------------------
2// Copyright 2024 Siemens
3//--------------------------------------------------------------------------
4// C++接口到JA API的头文件
5//--------------------------------------------------------------------------
6//
7// 源文件:
8// ASCImporter.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/Builder.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 ASCImporter;
33 class Builder;
34 class _ASCImporterBuilder;
35 class ASCImporterImpl;
50 class NXOPENCPPEXPORT ASCImporter : public NXOpen::Builder
51 {
53 public: enum Units
54 {
57 };
58 private: ASCImporterImpl * m_ascimporter_impl;
59 private: friend class _ASCImporterBuilder;
60 protected: ASCImporter();
61 public: ~ASCImporter();
66 (
67 );
71 public: void SetInputFile
72 (
73 const NXString & filename
74 );
79 (
80 const char * filename
81 );
86 (
87 );
91 public: void SetOutputFile
92 (
93 const NXString & filename
94 );
99 (
100 const char * filename
101 );
106 (
107 );
111 public: void SetPartUnitsEnum
112 (
113 NXOpen::ASCImporter::Units partUnitsEnum
114 );
119 (
120 );
125 (
126 bool createSketchInViews
127 );
132 (
133 );
138 (
139 bool createSketchInSheet
140 );
141 };
142}
143#ifdef _MSC_VER
144#pragma warning(pop)
145#endif
146#ifdef __GNUC__
147#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
148#pragma GCC diagnostic warning "-Wdeprecated-declarations"
149#endif
150#endif
151#undef EXPORTLIBRARY