forked from tpaviot/pythonocc-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPIHeaderSection.i
More file actions
938 lines (785 loc) · 24.9 KB
/
APIHeaderSection.i
File metadata and controls
938 lines (785 loc) · 24.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
/*
Copyright 2008-2023 Thomas Paviot (tpaviot@gmail.com)
This file is part of pythonOCC.
pythonOCC is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
pythonOCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with pythonOCC. If not, see <http://www.gnu.org/licenses/>.
*/
%define APIHEADERSECTIONDOCSTRING
"APIHeaderSection module, see official documentation at
https://www.opencascade.com/doc/occt-7.7.0/refman/html/package_apiheadersection.html"
%enddef
%module (package="OCC.Core", docstring=APIHEADERSECTIONDOCSTRING) APIHeaderSection
%{
#ifdef WNT
#pragma warning(disable : 4716)
#endif
%}
%include ../common/CommonIncludes.i
%include ../common/ExceptionCatcher.i
%include ../common/FunctionTransformers.i
%include ../common/EnumTemplates.i
%include ../common/Operators.i
%include ../common/OccHandle.i
%include ../common/IOStream.i
%{
#include<APIHeaderSection_module.hxx>
//Dependencies
#include<Standard_module.hxx>
#include<NCollection_module.hxx>
#include<IFSelect_module.hxx>
#include<Interface_module.hxx>
#include<TCollection_module.hxx>
#include<StepData_module.hxx>
#include<HeaderSection_module.hxx>
#include<MoniTool_module.hxx>
#include<TopoDS_module.hxx>
#include<Message_module.hxx>
#include<Resource_module.hxx>
#include<TColgp_module.hxx>
#include<TColStd_module.hxx>
#include<TCollection_module.hxx>
#include<Storage_module.hxx>
%};
%import Standard.i
%import NCollection.i
%import IFSelect.i
%import Interface.i
%import TCollection.i
%import StepData.i
%import HeaderSection.i
%pythoncode {
from enum import IntEnum
from OCC.Core.Exception import *
};
/* public enums */
/* end public enums declaration */
/* python proxy classes for enums */
%pythoncode {
};
/* end python proxy for enums */
/* handles */
%wrap_handle(APIHeaderSection_EditHeader)
/* end handles declaration */
/* templates */
/* end templates declaration */
/* typedefs */
/* end typedefs declaration */
/************************************
* class APIHeaderSection_EditHeader *
************************************/
class APIHeaderSection_EditHeader : public IFSelect_Editor {
public:
/****************** APIHeaderSection_EditHeader ******************/
/**** md5 signature: 2bf08a1315df936c9484c98a1d1baf5a ****/
%feature("compactdefaultargs") APIHeaderSection_EditHeader;
%feature("autodoc", "Return
-------
None
Description
-----------
No available documentation.
") APIHeaderSection_EditHeader;
APIHeaderSection_EditHeader();
/****************** Apply ******************/
/**** md5 signature: 7128480b7f4b1ff6fd959731640e27fc ****/
%feature("compactdefaultargs") Apply;
%feature("autodoc", "
Parameters
----------
form: IFSelect_EditForm
ent: Standard_Transient
model: Interface_InterfaceModel
Return
-------
bool
Description
-----------
No available documentation.
") Apply;
Standard_Boolean Apply(const opencascade::handle<IFSelect_EditForm> & form, const opencascade::handle<Standard_Transient> & ent, const opencascade::handle<Interface_InterfaceModel> & model);
/****************** Label ******************/
/**** md5 signature: e2fbf0e262882b3e9ec00c539ad3471b ****/
%feature("compactdefaultargs") Label;
%feature("autodoc", "Return
-------
TCollection_AsciiString
Description
-----------
No available documentation.
") Label;
TCollection_AsciiString Label();
/****************** Load ******************/
/**** md5 signature: fbb84192d1ec7737c4c84905239a2df8 ****/
%feature("compactdefaultargs") Load;
%feature("autodoc", "
Parameters
----------
form: IFSelect_EditForm
ent: Standard_Transient
model: Interface_InterfaceModel
Return
-------
bool
Description
-----------
No available documentation.
") Load;
Standard_Boolean Load(const opencascade::handle<IFSelect_EditForm> & form, const opencascade::handle<Standard_Transient> & ent, const opencascade::handle<Interface_InterfaceModel> & model);
/****************** Recognize ******************/
/**** md5 signature: 745b42e0c753cb6baed4d66bbf94e5b8 ****/
%feature("compactdefaultargs") Recognize;
%feature("autodoc", "
Parameters
----------
form: IFSelect_EditForm
Return
-------
bool
Description
-----------
No available documentation.
") Recognize;
Standard_Boolean Recognize(const opencascade::handle<IFSelect_EditForm> & form);
/****************** StringValue ******************/
/**** md5 signature: 4371620dd4c31b906a08f6f8ee98f04a ****/
%feature("compactdefaultargs") StringValue;
%feature("autodoc", "
Parameters
----------
form: IFSelect_EditForm
num: int
Return
-------
opencascade::handle<TCollection_HAsciiString>
Description
-----------
No available documentation.
") StringValue;
opencascade::handle<TCollection_HAsciiString> StringValue(const opencascade::handle<IFSelect_EditForm> & form, const Standard_Integer num);
};
%make_alias(APIHeaderSection_EditHeader)
%extend APIHeaderSection_EditHeader {
%pythoncode {
__repr__ = _dumps_object
}
};
/************************************
* class APIHeaderSection_MakeHeader *
************************************/
class APIHeaderSection_MakeHeader {
public:
/****************** APIHeaderSection_MakeHeader ******************/
/**** md5 signature: 231ae7cfabfb8525a17a55b5e8098f01 ****/
%feature("compactdefaultargs") APIHeaderSection_MakeHeader;
%feature("autodoc", "
Parameters
----------
shapetype: int (optional, default to 0)
Return
-------
None
Description
-----------
Prepares a new makeheader from scratch.
") APIHeaderSection_MakeHeader;
APIHeaderSection_MakeHeader(const Standard_Integer shapetype = 0);
/****************** APIHeaderSection_MakeHeader ******************/
/**** md5 signature: 3bf1a3faeeaf6e2623b6097489a9d879 ****/
%feature("compactdefaultargs") APIHeaderSection_MakeHeader;
%feature("autodoc", "
Parameters
----------
model: StepData_StepModel
Return
-------
None
Description
-----------
Prepares a makeheader from the content of a stepmodel see isdone to know if the header is well defined.
") APIHeaderSection_MakeHeader;
APIHeaderSection_MakeHeader(const opencascade::handle<StepData_StepModel> & model);
/****************** AddSchemaIdentifier ******************/
/**** md5 signature: fb971c31ef622fe2699e9896a61d0b7c ****/
%feature("compactdefaultargs") AddSchemaIdentifier;
%feature("autodoc", "
Parameters
----------
aSchemaIdentifier: TCollection_HAsciiString
Return
-------
None
Description
-----------
Add a subname of schema (if not yet in the list).
") AddSchemaIdentifier;
void AddSchemaIdentifier(const opencascade::handle<TCollection_HAsciiString> & aSchemaIdentifier);
/****************** Apply ******************/
/**** md5 signature: 7a18b7c9dc5aace0d13d1301acc1073f ****/
%feature("compactdefaultargs") Apply;
%feature("autodoc", "
Parameters
----------
model: StepData_StepModel
Return
-------
None
Description
-----------
Creates an empty header for a new step model and allows the header fields to be completed.
") Apply;
void Apply(const opencascade::handle<StepData_StepModel> & model);
/****************** Author ******************/
/**** md5 signature: 23de40daf6aa0108289fcab1cc10b710 ****/
%feature("compactdefaultargs") Author;
%feature("autodoc", "Return
-------
opencascade::handle<Interface_HArray1OfHAsciiString>
Description
-----------
No available documentation.
") Author;
opencascade::handle<Interface_HArray1OfHAsciiString> Author();
/****************** AuthorValue ******************/
/**** md5 signature: 053bae3a6f3b50b0b3cbcc10f1448e71 ****/
%feature("compactdefaultargs") AuthorValue;
%feature("autodoc", "
Parameters
----------
num: int
Return
-------
opencascade::handle<TCollection_HAsciiString>
Description
-----------
Returns the value of the name attribute for the file_name entity.
") AuthorValue;
opencascade::handle<TCollection_HAsciiString> AuthorValue(const Standard_Integer num);
/****************** Authorisation ******************/
/**** md5 signature: 74cf5a9ad29d5b5b00394896d05f442b ****/
%feature("compactdefaultargs") Authorisation;
%feature("autodoc", "Return
-------
opencascade::handle<TCollection_HAsciiString>
Description
-----------
Returns the value of the authorization attribute for the file_name entity.
") Authorisation;
opencascade::handle<TCollection_HAsciiString> Authorisation();
/****************** Description ******************/
/**** md5 signature: 9b909686a25b7d6265affec4e3820e98 ****/
%feature("compactdefaultargs") Description;
%feature("autodoc", "Return
-------
opencascade::handle<Interface_HArray1OfHAsciiString>
Description
-----------
No available documentation.
") Description;
opencascade::handle<Interface_HArray1OfHAsciiString> Description();
/****************** DescriptionValue ******************/
/**** md5 signature: c5b8ce5eb4616a323970d217aa88af81 ****/
%feature("compactdefaultargs") DescriptionValue;
%feature("autodoc", "
Parameters
----------
num: int
Return
-------
opencascade::handle<TCollection_HAsciiString>
Description
-----------
Returns the value of the description attribute for the file_description entity.
") DescriptionValue;
opencascade::handle<TCollection_HAsciiString> DescriptionValue(const Standard_Integer num);
/****************** FdValue ******************/
/**** md5 signature: 399c35af474cdbfb7c29fa336d37d16b ****/
%feature("compactdefaultargs") FdValue;
%feature("autodoc", "Return
-------
opencascade::handle<HeaderSection_FileDescription>
Description
-----------
Returns the file_description entity. returns an empty entity if the file_description entity is not initialized.
") FdValue;
opencascade::handle<HeaderSection_FileDescription> FdValue();
/****************** FnValue ******************/
/**** md5 signature: 1fce139b98d1ddb3cc6f35b294bb9be7 ****/
%feature("compactdefaultargs") FnValue;
%feature("autodoc", "Return
-------
opencascade::handle<HeaderSection_FileName>
Description
-----------
Returns the file_name entity. returns an empty entity if the file_name entity is not initialized.
") FnValue;
opencascade::handle<HeaderSection_FileName> FnValue();
/****************** FsValue ******************/
/**** md5 signature: c8a4cff4875f3713ab08524574c21b3d ****/
%feature("compactdefaultargs") FsValue;
%feature("autodoc", "Return
-------
opencascade::handle<HeaderSection_FileSchema>
Description
-----------
Returns the file_schema entity. returns an empty entity if the file_schema entity is not initialized.
") FsValue;
opencascade::handle<HeaderSection_FileSchema> FsValue();
/****************** HasFd ******************/
/**** md5 signature: 3e3e6b526b3805f902bd9b9718341d83 ****/
%feature("compactdefaultargs") HasFd;
%feature("autodoc", "Return
-------
bool
Description
-----------
Checks whether there is a file_description entity. returns true if there is one.
") HasFd;
Standard_Boolean HasFd();
/****************** HasFn ******************/
/**** md5 signature: 22abe5d4b1e7cc9f85b888c01240ca09 ****/
%feature("compactdefaultargs") HasFn;
%feature("autodoc", "Return
-------
bool
Description
-----------
Checks whether there is a file_name entity. returns true if there is one.
") HasFn;
Standard_Boolean HasFn();
/****************** HasFs ******************/
/**** md5 signature: 89a6bd5da2c2843e66a711cfaa6d599b ****/
%feature("compactdefaultargs") HasFs;
%feature("autodoc", "Return
-------
bool
Description
-----------
Checks whether there is a file_schema entity. returns true if there is one.
") HasFs;
Standard_Boolean HasFs();
/****************** ImplementationLevel ******************/
/**** md5 signature: b09f681ece8c976e12d39e35c7caa9fe ****/
%feature("compactdefaultargs") ImplementationLevel;
%feature("autodoc", "Return
-------
opencascade::handle<TCollection_HAsciiString>
Description
-----------
Returns the value of the implementation_level attribute for the file_description entity.
") ImplementationLevel;
opencascade::handle<TCollection_HAsciiString> ImplementationLevel();
/****************** Init ******************/
/**** md5 signature: 95810cfe4820451da1da0554cb350c5c ****/
%feature("compactdefaultargs") Init;
%feature("autodoc", "
Parameters
----------
nameval: str
Return
-------
None
Description
-----------
Cancels the former definition and gives a filename to be used when a model has no well defined header.
") Init;
void Init(Standard_CString nameval);
/****************** IsDone ******************/
/**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/
%feature("compactdefaultargs") IsDone;
%feature("autodoc", "Return
-------
bool
Description
-----------
Returns true if all data have been defined (see also hasfn, hasfs, hasfd).
") IsDone;
Standard_Boolean IsDone();
/****************** Name ******************/
/**** md5 signature: 6bcb97f17b57cae0750fd29eac20499c ****/
%feature("compactdefaultargs") Name;
%feature("autodoc", "Return
-------
opencascade::handle<TCollection_HAsciiString>
Description
-----------
Returns the name attribute for the file_name entity.
") Name;
opencascade::handle<TCollection_HAsciiString> Name();
/****************** NbAuthor ******************/
/**** md5 signature: 6ca174c13a42409600e9909ad554980b ****/
%feature("compactdefaultargs") NbAuthor;
%feature("autodoc", "Return
-------
int
Description
-----------
Returns the number of values for the author attribute in the file_name entity.
") NbAuthor;
Standard_Integer NbAuthor();
/****************** NbDescription ******************/
/**** md5 signature: 38d1fdc13e41b3ac019bdb2d4ba64b1e ****/
%feature("compactdefaultargs") NbDescription;
%feature("autodoc", "Return
-------
int
Description
-----------
Returns the number of values for the file_description entity in the step file header.
") NbDescription;
Standard_Integer NbDescription();
/****************** NbOrganization ******************/
/**** md5 signature: 60ebd0ae36d49c04683d7f95b2a097f9 ****/
%feature("compactdefaultargs") NbOrganization;
%feature("autodoc", "Return
-------
int
Description
-----------
Returns the number of values for the organization attribute in the file_name entity.
") NbOrganization;
Standard_Integer NbOrganization();
/****************** NbSchemaIdentifiers ******************/
/**** md5 signature: 260454647efe5048cae47a1a4cd460a4 ****/
%feature("compactdefaultargs") NbSchemaIdentifiers;
%feature("autodoc", "Return
-------
int
Description
-----------
Returns the number of values for the schema_identifier attribute in the file_schema entity.
") NbSchemaIdentifiers;
Standard_Integer NbSchemaIdentifiers();
/****************** NewModel ******************/
/**** md5 signature: 35ddc5a32982d5512b348f225233e219 ****/
%feature("compactdefaultargs") NewModel;
%feature("autodoc", "
Parameters
----------
protocol: Interface_Protocol
Return
-------
opencascade::handle<StepData_StepModel>
Description
-----------
Builds a header, creates a new stepmodel, then applies the header to the stepmodel the schema name is taken from the protocol (if it inherits from stepdata, else it is left in blanks).
") NewModel;
opencascade::handle<StepData_StepModel> NewModel(const opencascade::handle<Interface_Protocol> & protocol);
/****************** Organization ******************/
/**** md5 signature: 454248c33742fc33d8c2d44c0e083d34 ****/
%feature("compactdefaultargs") Organization;
%feature("autodoc", "Return
-------
opencascade::handle<Interface_HArray1OfHAsciiString>
Description
-----------
No available documentation.
") Organization;
opencascade::handle<Interface_HArray1OfHAsciiString> Organization();
/****************** OrganizationValue ******************/
/**** md5 signature: 3caa7e153a3d6decf2c39d267a41eb95 ****/
%feature("compactdefaultargs") OrganizationValue;
%feature("autodoc", "
Parameters
----------
num: int
Return
-------
opencascade::handle<TCollection_HAsciiString>
Description
-----------
Returns the value of attribute organization for the file_name entity.
") OrganizationValue;
opencascade::handle<TCollection_HAsciiString> OrganizationValue(const Standard_Integer num);
/****************** OriginatingSystem ******************/
/**** md5 signature: 543b855a9c992957f432135cf086f1e1 ****/
%feature("compactdefaultargs") OriginatingSystem;
%feature("autodoc", "Return
-------
opencascade::handle<TCollection_HAsciiString>
Description
-----------
No available documentation.
") OriginatingSystem;
opencascade::handle<TCollection_HAsciiString> OriginatingSystem();
/****************** PreprocessorVersion ******************/
/**** md5 signature: 2cdc579887f56c912417c5ff0ccd068c ****/
%feature("compactdefaultargs") PreprocessorVersion;
%feature("autodoc", "Return
-------
opencascade::handle<TCollection_HAsciiString>
Description
-----------
Returns the name of the preprocessor_version for the file_name entity.
") PreprocessorVersion;
opencascade::handle<TCollection_HAsciiString> PreprocessorVersion();
/****************** SchemaIdentifiers ******************/
/**** md5 signature: 404b25dfbdf2c6acd6d96aec78411851 ****/
%feature("compactdefaultargs") SchemaIdentifiers;
%feature("autodoc", "Return
-------
opencascade::handle<Interface_HArray1OfHAsciiString>
Description
-----------
No available documentation.
") SchemaIdentifiers;
opencascade::handle<Interface_HArray1OfHAsciiString> SchemaIdentifiers();
/****************** SchemaIdentifiersValue ******************/
/**** md5 signature: ba505a8bd6bc4c707e90011f1b54457f ****/
%feature("compactdefaultargs") SchemaIdentifiersValue;
%feature("autodoc", "
Parameters
----------
num: int
Return
-------
opencascade::handle<TCollection_HAsciiString>
Description
-----------
Returns the value of the schema_identifier attribute for the file_schema entity.
") SchemaIdentifiersValue;
opencascade::handle<TCollection_HAsciiString> SchemaIdentifiersValue(const Standard_Integer num);
/****************** SetAuthor ******************/
/**** md5 signature: c479de6bbe2aeb24d60e92667b68a0af ****/
%feature("compactdefaultargs") SetAuthor;
%feature("autodoc", "
Parameters
----------
aAuthor: Interface_HArray1OfHAsciiString
Return
-------
None
Description
-----------
No available documentation.
") SetAuthor;
void SetAuthor(const opencascade::handle<Interface_HArray1OfHAsciiString> & aAuthor);
/****************** SetAuthorValue ******************/
/**** md5 signature: cc33232c8663abd7f2ca48f6203f9736 ****/
%feature("compactdefaultargs") SetAuthorValue;
%feature("autodoc", "
Parameters
----------
num: int
aAuthor: TCollection_HAsciiString
Return
-------
None
Description
-----------
No available documentation.
") SetAuthorValue;
void SetAuthorValue(const Standard_Integer num, const opencascade::handle<TCollection_HAsciiString> & aAuthor);
/****************** SetAuthorisation ******************/
/**** md5 signature: dabbd55c5d2fdde44a103b7c5629df5c ****/
%feature("compactdefaultargs") SetAuthorisation;
%feature("autodoc", "
Parameters
----------
aAuthorisation: TCollection_HAsciiString
Return
-------
None
Description
-----------
No available documentation.
") SetAuthorisation;
void SetAuthorisation(const opencascade::handle<TCollection_HAsciiString> & aAuthorisation);
/****************** SetDescription ******************/
/**** md5 signature: 1e04b25950c14571044a08d553341bd0 ****/
%feature("compactdefaultargs") SetDescription;
%feature("autodoc", "
Parameters
----------
aDescription: Interface_HArray1OfHAsciiString
Return
-------
None
Description
-----------
No available documentation.
") SetDescription;
void SetDescription(const opencascade::handle<Interface_HArray1OfHAsciiString> & aDescription);
/****************** SetDescriptionValue ******************/
/**** md5 signature: a8f2c66c20e21c2385f52a8fd239e40f ****/
%feature("compactdefaultargs") SetDescriptionValue;
%feature("autodoc", "
Parameters
----------
num: int
aDescription: TCollection_HAsciiString
Return
-------
None
Description
-----------
No available documentation.
") SetDescriptionValue;
void SetDescriptionValue(const Standard_Integer num, const opencascade::handle<TCollection_HAsciiString> & aDescription);
/****************** SetImplementationLevel ******************/
/**** md5 signature: 456c2b949d32712489902f181c0fdd2e ****/
%feature("compactdefaultargs") SetImplementationLevel;
%feature("autodoc", "
Parameters
----------
aImplementationLevel: TCollection_HAsciiString
Return
-------
None
Description
-----------
No available documentation.
") SetImplementationLevel;
void SetImplementationLevel(const opencascade::handle<TCollection_HAsciiString> & aImplementationLevel);
/****************** SetName ******************/
/**** md5 signature: 1e0b00d9eb163c8a0cdbb986e2ee24f6 ****/
%feature("compactdefaultargs") SetName;
%feature("autodoc", "
Parameters
----------
aName: TCollection_HAsciiString
Return
-------
None
Description
-----------
No available documentation.
") SetName;
void SetName(const opencascade::handle<TCollection_HAsciiString> & aName);
/****************** SetOrganization ******************/
/**** md5 signature: 898ebb6b0632041f91e1f21a8a1ca169 ****/
%feature("compactdefaultargs") SetOrganization;
%feature("autodoc", "
Parameters
----------
aOrganization: Interface_HArray1OfHAsciiString
Return
-------
None
Description
-----------
No available documentation.
") SetOrganization;
void SetOrganization(const opencascade::handle<Interface_HArray1OfHAsciiString> & aOrganization);
/****************** SetOrganizationValue ******************/
/**** md5 signature: fe8a80aaa470fd8e2239e6f20b14ee57 ****/
%feature("compactdefaultargs") SetOrganizationValue;
%feature("autodoc", "
Parameters
----------
num: int
aOrganization: TCollection_HAsciiString
Return
-------
None
Description
-----------
No available documentation.
") SetOrganizationValue;
void SetOrganizationValue(const Standard_Integer num, const opencascade::handle<TCollection_HAsciiString> & aOrganization);
/****************** SetOriginatingSystem ******************/
/**** md5 signature: df50b03f270ab4067d00a9b263849945 ****/
%feature("compactdefaultargs") SetOriginatingSystem;
%feature("autodoc", "
Parameters
----------
aOriginatingSystem: TCollection_HAsciiString
Return
-------
None
Description
-----------
No available documentation.
") SetOriginatingSystem;
void SetOriginatingSystem(const opencascade::handle<TCollection_HAsciiString> & aOriginatingSystem);
/****************** SetPreprocessorVersion ******************/
/**** md5 signature: cf1be8e1fadf8f579cf193da0139a1b2 ****/
%feature("compactdefaultargs") SetPreprocessorVersion;
%feature("autodoc", "
Parameters
----------
aPreprocessorVersion: TCollection_HAsciiString
Return
-------
None
Description
-----------
No available documentation.
") SetPreprocessorVersion;
void SetPreprocessorVersion(const opencascade::handle<TCollection_HAsciiString> & aPreprocessorVersion);
/****************** SetSchemaIdentifiers ******************/
/**** md5 signature: 37a42703d2ec981a51e918549381152b ****/
%feature("compactdefaultargs") SetSchemaIdentifiers;
%feature("autodoc", "
Parameters
----------
aSchemaIdentifiers: Interface_HArray1OfHAsciiString
Return
-------
None
Description
-----------
No available documentation.
") SetSchemaIdentifiers;
void SetSchemaIdentifiers(const opencascade::handle<Interface_HArray1OfHAsciiString> & aSchemaIdentifiers);
/****************** SetSchemaIdentifiersValue ******************/
/**** md5 signature: 0af7d48de5cd14a190015f37164e5d73 ****/
%feature("compactdefaultargs") SetSchemaIdentifiersValue;
%feature("autodoc", "
Parameters
----------
num: int
aSchemaIdentifier: TCollection_HAsciiString
Return
-------
None
Description
-----------
No available documentation.
") SetSchemaIdentifiersValue;
void SetSchemaIdentifiersValue(const Standard_Integer num, const opencascade::handle<TCollection_HAsciiString> & aSchemaIdentifier);
/****************** SetTimeStamp ******************/
/**** md5 signature: 38e2ba6d611ac3c71ddded5966b2c9a2 ****/
%feature("compactdefaultargs") SetTimeStamp;
%feature("autodoc", "
Parameters
----------
aTimeStamp: TCollection_HAsciiString
Return
-------
None
Description
-----------
No available documentation.
") SetTimeStamp;
void SetTimeStamp(const opencascade::handle<TCollection_HAsciiString> & aTimeStamp);
/****************** TimeStamp ******************/
/**** md5 signature: b66adf354c77d407fbbc52d9a834d10f ****/
%feature("compactdefaultargs") TimeStamp;
%feature("autodoc", "Return
-------
opencascade::handle<TCollection_HAsciiString>
Description
-----------
Returns the value of the time_stamp attribute for the file_name entity.
") TimeStamp;
opencascade::handle<TCollection_HAsciiString> TimeStamp();
};
%extend APIHeaderSection_MakeHeader {
%pythoncode {
__repr__ = _dumps_object
}
};
/* harray1 classes */
/* harray2 classes */
/* hsequence classes */
/* class aliases */
%pythoncode {
}