File: PCDM.cpp

package info (click to toggle)
python-ocp 7.8.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 64,720 kB
  • sloc: cpp: 362,337; pascal: 33; python: 23; makefile: 4
file content (872 lines) | stat: -rw-r--r-- 51,849 bytes parent folder | download | duplicates (2)
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

// std lib related includes
#include <tuple>

// pybind 11 related includes
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>

namespace py = pybind11;

// Standard Handle
#include <Standard_Handle.hxx>


// includes to resolve forward declarations
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Storage_BaseDriver.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TCollection_AsciiString.hxx>
#include <Storage_Data.hxx>
#include <CDM_Document.hxx>
#include <Message_Messenger.hxx>
#include <Storage_BaseDriver.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TCollection_AsciiString.hxx>
#include <Storage_Data.hxx>
#include <CDM_Document.hxx>
#include <Message_Messenger.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <CDM_Document.hxx>
#include <CDM_Application.hxx>
#include <PCDM_ReaderFilter.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <CDM_Document.hxx>
#include <CDM_MetaData.hxx>
#include <CDM_Application.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <CDM_MetaData.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <CDM_Document.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <CDM_Document.hxx>
#include <TCollection_ExtendedString.hxx>

// module includes
#include <PCDM.hxx>
#include <PCDM_BaseDriverPointer.hxx>
#include <PCDM_Document.hxx>
#include <PCDM_DOMHeaderParser.hxx>
#include <PCDM_DriverError.hxx>
#include <PCDM_Reader.hxx>
#include <PCDM_ReaderFilter.hxx>
#include <PCDM_ReaderStatus.hxx>
#include <PCDM_ReadWriter.hxx>
#include <PCDM_ReadWriter_1.hxx>
#include <PCDM_Reference.hxx>
#include <PCDM_ReferenceIterator.hxx>
#include <PCDM_RetrievalDriver.hxx>
#include <PCDM_SequenceOfDocument.hxx>
#include <PCDM_SequenceOfReference.hxx>
#include <PCDM_StorageDriver.hxx>
#include <PCDM_StoreStatus.hxx>
#include <PCDM_TypeOfFileDriver.hxx>
#include <PCDM_Writer.hxx>

// template related includes

// ./opencascade/PCDM_SequenceOfDocument.hxx
#include "NCollection_tmpl.hxx"

// ./opencascade/PCDM_SequenceOfReference.hxx
#include "NCollection_tmpl.hxx"


// user-defined pre
#include "OCP_specific.inc"

// user-defined inclusion per module

// Module definiiton
void register_PCDM(py::module &main_module) {


py::module m = static_cast<py::module>(main_module.attr("PCDM"));
py::object klass;

//Python trampoline classes
    class Py_PCDM_ReadWriter : public PCDM_ReadWriter{
    public:
        using PCDM_ReadWriter::PCDM_ReadWriter;


        // public pure virtual
        TCollection_AsciiString Version() const  override { PYBIND11_OVERLOAD_PURE(TCollection_AsciiString,PCDM_ReadWriter,Version,) };
        void WriteReferenceCounter(const opencascade::handle<Storage_Data> & aData,const opencascade::handle<CDM_Document> & aDocument) const  override { PYBIND11_OVERLOAD_PURE(void,PCDM_ReadWriter,WriteReferenceCounter,aData,aDocument) };
        void WriteReferences(const opencascade::handle<Storage_Data> & aData,const opencascade::handle<CDM_Document> & aDocument,const TCollection_ExtendedString & theReferencerFileName) const  override { PYBIND11_OVERLOAD_PURE(void,PCDM_ReadWriter,WriteReferences,aData,aDocument,theReferencerFileName) };
        void WriteExtensions(const opencascade::handle<Storage_Data> & aData,const opencascade::handle<CDM_Document> & aDocument) const  override { PYBIND11_OVERLOAD_PURE(void,PCDM_ReadWriter,WriteExtensions,aData,aDocument) };
        void WriteVersion(const opencascade::handle<Storage_Data> & aData,const opencascade::handle<CDM_Document> & aDocument) const  override { PYBIND11_OVERLOAD_PURE(void,PCDM_ReadWriter,WriteVersion,aData,aDocument) };
        Standard_Integer ReadReferenceCounter(const TCollection_ExtendedString & theFileName,const opencascade::handle<Message_Messenger> & theMsgDriver) const  override { PYBIND11_OVERLOAD_PURE(Standard_Integer,PCDM_ReadWriter,ReadReferenceCounter,theFileName,theMsgDriver) };
        void ReadReferences(const TCollection_ExtendedString & aFileName,NCollection_Sequence<PCDM_Reference> & theReferences,const opencascade::handle<Message_Messenger> & theMsgDriver) const  override { PYBIND11_OVERLOAD_PURE(void,PCDM_ReadWriter,ReadReferences,aFileName,theReferences,theMsgDriver) };
        void ReadExtensions(const TCollection_ExtendedString & aFileName,NCollection_Sequence<TCollection_ExtendedString> & theExtensions,const opencascade::handle<Message_Messenger> & theMsgDriver) const  override { PYBIND11_OVERLOAD_PURE(void,PCDM_ReadWriter,ReadExtensions,aFileName,theExtensions,theMsgDriver) };
        Standard_Integer ReadDocumentVersion(const TCollection_ExtendedString & aFileName,const opencascade::handle<Message_Messenger> & theMsgDriver) const  override { PYBIND11_OVERLOAD_PURE(Standard_Integer,PCDM_ReadWriter,ReadDocumentVersion,aFileName,theMsgDriver) };


        // protected pure virtual


        // private pure virtual

    };
    class Py_PCDM_Reader : public PCDM_Reader{
    public:
        using PCDM_Reader::PCDM_Reader;


        // public pure virtual
        void Read(const TCollection_ExtendedString & aFileName,const opencascade::handle<CDM_Document> & aNewDocument,const opencascade::handle<CDM_Application> & anApplication,const opencascade::handle<PCDM_ReaderFilter> & theFilter,const Message_ProgressRange & theProgress) override { PYBIND11_OVERLOAD_PURE(void,PCDM_Reader,Read,aFileName,aNewDocument,anApplication,theFilter,theProgress) };
        void Read(std::istream & theIStream,const opencascade::handle<Storage_Data> & theStorageData,const opencascade::handle<CDM_Document> & theDoc,const opencascade::handle<CDM_Application> & theApplication,const opencascade::handle<PCDM_ReaderFilter> & theFilter,const Message_ProgressRange & theProgress) override { PYBIND11_OVERLOAD_PURE(void,PCDM_Reader,Read,theIStream,theStorageData,theDoc,theApplication,theFilter,theProgress) };


        // protected pure virtual


        // private pure virtual

    };
    class Py_PCDM_Writer : public PCDM_Writer{
    public:
        using PCDM_Writer::PCDM_Writer;


        // public pure virtual
        void Write(const opencascade::handle<CDM_Document> & aDocument,const TCollection_ExtendedString & aFileName,const Message_ProgressRange & theRange) override { PYBIND11_OVERLOAD_PURE(void,PCDM_Writer,Write,aDocument,aFileName,theRange) };
        void Write(const opencascade::handle<CDM_Document> & theDocument,std::ostream & theOStream,const Message_ProgressRange & theRange) override { PYBIND11_OVERLOAD_PURE(void,PCDM_Writer,Write,theDocument,theOStream,theRange) };


        // protected pure virtual


        // private pure virtual

    };
    class Py_PCDM_RetrievalDriver : public PCDM_RetrievalDriver{
    public:
        using PCDM_RetrievalDriver::PCDM_RetrievalDriver;


        // public pure virtual

        void Read(const TCollection_ExtendedString & aFileName,const opencascade::handle<CDM_Document> & aNewDocument,const opencascade::handle<CDM_Application> & anApplication,const opencascade::handle<PCDM_ReaderFilter> & theFilter,const Message_ProgressRange & theProgress) override { PYBIND11_OVERLOAD_PURE(void,PCDM_Reader,Read,aFileName,aNewDocument,anApplication,theFilter,theProgress) };
        void Read(std::istream & theIStream,const opencascade::handle<Storage_Data> & theStorageData,const opencascade::handle<CDM_Document> & theDoc,const opencascade::handle<CDM_Application> & theApplication,const opencascade::handle<PCDM_ReaderFilter> & theFilter,const Message_ProgressRange & theProgress) override { PYBIND11_OVERLOAD_PURE(void,PCDM_Reader,Read,theIStream,theStorageData,theDoc,theApplication,theFilter,theProgress) };

        // protected pure virtual


        // private pure virtual

    };

// classes

    // Class PCDM from ./opencascade/PCDM.hxx
    klass = m.attr("PCDM");

    // default constructor
    register_default_constructor<PCDM , shared_ptr<PCDM>>(m,"PCDM");

    // nested enums

    static_cast<py::class_<PCDM , shared_ptr<PCDM>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("FileDriverType_s",
                    (PCDM_TypeOfFileDriver (*)( const TCollection_AsciiString & ,  opencascade::handle<Storage_BaseDriver> &  ) ) static_cast<PCDM_TypeOfFileDriver (*)( const TCollection_AsciiString & ,  opencascade::handle<Storage_BaseDriver> &  ) >(&PCDM::FileDriverType),
                    R"#(None)#"  , py::arg("aFileName"),  py::arg("aBaseDriver")
          )
        .def_static("FileDriverType_s",
                    (PCDM_TypeOfFileDriver (*)( std::istream & ,  opencascade::handle<Storage_BaseDriver> &  ) ) static_cast<PCDM_TypeOfFileDriver (*)( std::istream & ,  opencascade::handle<Storage_BaseDriver> &  ) >(&PCDM::FileDriverType),
                    R"#(None)#"  , py::arg("theIStream"),  py::arg("theBaseDriver")
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

    // Class PCDM_Document from ./opencascade/PCDM_Document.hxx
    klass = m.attr("PCDM_Document");

    // default constructor
    register_default_constructor<PCDM_Document ,opencascade::handle<PCDM_Document>>(m,"PCDM_Document");

    // nested enums

    static_cast<py::class_<PCDM_Document ,opencascade::handle<PCDM_Document>  , Standard_Persistent >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&PCDM_Document::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&PCDM_Document::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (PCDM_Document::*)() const) static_cast<const opencascade::handle<Standard_Type> & (PCDM_Document::*)() const>(&PCDM_Document::DynamicType),
             R"#(None)#"
             
         )
;

    // Class PCDM_ReadWriter from ./opencascade/PCDM_ReadWriter.hxx
    klass = m.attr("PCDM_ReadWriter");


    // nested enums

    static_cast<py::class_<PCDM_ReadWriter ,opencascade::handle<PCDM_ReadWriter> ,Py_PCDM_ReadWriter , Standard_Transient >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("Version",
             (TCollection_AsciiString (PCDM_ReadWriter::*)() const) static_cast<TCollection_AsciiString (PCDM_ReadWriter::*)() const>(&PCDM_ReadWriter::Version),
             R"#(returns PCDM_ReadWriter_1.)#" 
          )
        .def("WriteReferenceCounter",
             (void (PCDM_ReadWriter::*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> &  ) const) static_cast<void (PCDM_ReadWriter::*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> &  ) const>(&PCDM_ReadWriter::WriteReferenceCounter),
             R"#(None)#"  , py::arg("aData"),  py::arg("aDocument")
          )
        .def("WriteReferences",
             (void (PCDM_ReadWriter::*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> & ,  const TCollection_ExtendedString &  ) const) static_cast<void (PCDM_ReadWriter::*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> & ,  const TCollection_ExtendedString &  ) const>(&PCDM_ReadWriter::WriteReferences),
             R"#(None)#"  , py::arg("aData"),  py::arg("aDocument"),  py::arg("theReferencerFileName")
          )
        .def("WriteExtensions",
             (void (PCDM_ReadWriter::*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> &  ) const) static_cast<void (PCDM_ReadWriter::*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> &  ) const>(&PCDM_ReadWriter::WriteExtensions),
             R"#(None)#"  , py::arg("aData"),  py::arg("aDocument")
          )
        .def("WriteVersion",
             (void (PCDM_ReadWriter::*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> &  ) const) static_cast<void (PCDM_ReadWriter::*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> &  ) const>(&PCDM_ReadWriter::WriteVersion),
             R"#(None)#"  , py::arg("aData"),  py::arg("aDocument")
          )
        .def("ReadReferenceCounter",
             (Standard_Integer (PCDM_ReadWriter::*)( const TCollection_ExtendedString & ,  const opencascade::handle<Message_Messenger> &  ) const) static_cast<Standard_Integer (PCDM_ReadWriter::*)( const TCollection_ExtendedString & ,  const opencascade::handle<Message_Messenger> &  ) const>(&PCDM_ReadWriter::ReadReferenceCounter),
             R"#(None)#"  , py::arg("theFileName"),  py::arg("theMsgDriver")
          )
        .def("ReadReferences",
             (void (PCDM_ReadWriter::*)( const TCollection_ExtendedString & ,  NCollection_Sequence<PCDM_Reference> & ,  const opencascade::handle<Message_Messenger> &  ) const) static_cast<void (PCDM_ReadWriter::*)( const TCollection_ExtendedString & ,  NCollection_Sequence<PCDM_Reference> & ,  const opencascade::handle<Message_Messenger> &  ) const>(&PCDM_ReadWriter::ReadReferences),
             R"#(None)#"  , py::arg("aFileName"),  py::arg("theReferences"),  py::arg("theMsgDriver")
          )
        .def("ReadExtensions",
             (void (PCDM_ReadWriter::*)( const TCollection_ExtendedString & ,  NCollection_Sequence<TCollection_ExtendedString> & ,  const opencascade::handle<Message_Messenger> &  ) const) static_cast<void (PCDM_ReadWriter::*)( const TCollection_ExtendedString & ,  NCollection_Sequence<TCollection_ExtendedString> & ,  const opencascade::handle<Message_Messenger> &  ) const>(&PCDM_ReadWriter::ReadExtensions),
             R"#(None)#"  , py::arg("aFileName"),  py::arg("theExtensions"),  py::arg("theMsgDriver")
          )
        .def("ReadDocumentVersion",
             (Standard_Integer (PCDM_ReadWriter::*)( const TCollection_ExtendedString & ,  const opencascade::handle<Message_Messenger> &  ) const) static_cast<Standard_Integer (PCDM_ReadWriter::*)( const TCollection_ExtendedString & ,  const opencascade::handle<Message_Messenger> &  ) const>(&PCDM_ReadWriter::ReadDocumentVersion),
             R"#(None)#"  , py::arg("aFileName"),  py::arg("theMsgDriver")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Open_s",
                    (void (*)( const opencascade::handle<Storage_BaseDriver> & ,  const TCollection_ExtendedString & ,  const Storage_OpenMode  ) ) static_cast<void (*)( const opencascade::handle<Storage_BaseDriver> & ,  const TCollection_ExtendedString & ,  const Storage_OpenMode  ) >(&PCDM_ReadWriter::Open),
                    R"#(None)#"  , py::arg("aDriver"),  py::arg("aFileName"),  py::arg("anOpenMode")
          )
        .def_static("Reader_s",
                    (opencascade::handle<PCDM_ReadWriter> (*)( const TCollection_ExtendedString &  ) ) static_cast<opencascade::handle<PCDM_ReadWriter> (*)( const TCollection_ExtendedString &  ) >(&PCDM_ReadWriter::Reader),
                    R"#(returns the convenient Reader for a File.)#"  , py::arg("aFileName")
          )
        .def_static("Writer_s",
                    (opencascade::handle<PCDM_ReadWriter> (*)() ) static_cast<opencascade::handle<PCDM_ReadWriter> (*)() >(&PCDM_ReadWriter::Writer),
                    R"#(None)#" 
          )
        .def_static("WriteFileFormat_s",
                    (void (*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> &  ) ) static_cast<void (*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> &  ) >(&PCDM_ReadWriter::WriteFileFormat),
                    R"#(None)#"  , py::arg("aData"),  py::arg("aDocument")
          )
        .def_static("FileFormat_s",
                    (TCollection_ExtendedString (*)( const TCollection_ExtendedString &  ) ) static_cast<TCollection_ExtendedString (*)( const TCollection_ExtendedString &  ) >(&PCDM_ReadWriter::FileFormat),
                    R"#(tries to get a format in the file. returns an empty string if the file could not be read or does not have a FileFormat information.)#"  , py::arg("aFileName")
          )
        .def_static("FileFormat_s",
                    (TCollection_ExtendedString (*)( std::istream & ,  opencascade::handle<Storage_Data> &  ) ) static_cast<TCollection_ExtendedString (*)( std::istream & ,  opencascade::handle<Storage_Data> &  ) >(&PCDM_ReadWriter::FileFormat),
                    R"#(tries to get a format from the stream. returns an empty string if the file could not be read or does not have a FileFormat information.)#"  , py::arg("theIStream"),  py::arg("theData")
          )
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&PCDM_ReadWriter::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&PCDM_ReadWriter::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (PCDM_ReadWriter::*)() const) static_cast<const opencascade::handle<Standard_Type> & (PCDM_ReadWriter::*)() const>(&PCDM_ReadWriter::DynamicType),
             R"#(None)#"
             
         )
;

    // Class PCDM_Reader from ./opencascade/PCDM_Reader.hxx
    klass = m.attr("PCDM_Reader");


    // nested enums

    static_cast<py::class_<PCDM_Reader ,opencascade::handle<PCDM_Reader> ,Py_PCDM_Reader , Standard_Transient >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("Read",
             (void (PCDM_Reader::*)( const TCollection_ExtendedString & ,  const opencascade::handle<CDM_Document> & ,  const opencascade::handle<CDM_Application> & ,  const opencascade::handle<PCDM_ReaderFilter> & ,  const Message_ProgressRange &  ) ) static_cast<void (PCDM_Reader::*)( const TCollection_ExtendedString & ,  const opencascade::handle<CDM_Document> & ,  const opencascade::handle<CDM_Application> & ,  const opencascade::handle<PCDM_ReaderFilter> & ,  const Message_ProgressRange &  ) >(&PCDM_Reader::Read),
             R"#(retrieves the content of the file into a new Document.)#"  , py::arg("aFileName"),  py::arg("aNewDocument"),  py::arg("anApplication"),  py::arg("theFilter")=static_cast<const opencascade::handle<PCDM_ReaderFilter> &>(Handle ( PCDM_ReaderFilter ) ( )),  py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("Read",
             (void (PCDM_Reader::*)( std::istream & ,  const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> & ,  const opencascade::handle<CDM_Application> & ,  const opencascade::handle<PCDM_ReaderFilter> & ,  const Message_ProgressRange &  ) ) static_cast<void (PCDM_Reader::*)( std::istream & ,  const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> & ,  const opencascade::handle<CDM_Application> & ,  const opencascade::handle<PCDM_ReaderFilter> & ,  const Message_ProgressRange &  ) >(&PCDM_Reader::Read),
             R"#(None)#"  , py::arg("theIStream"),  py::arg("theStorageData"),  py::arg("theDoc"),  py::arg("theApplication"),  py::arg("theFilter")=static_cast<const opencascade::handle<PCDM_ReaderFilter> &>(Handle ( PCDM_ReaderFilter ) ( )),  py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("GetStatus",
             (PCDM_ReaderStatus (PCDM_Reader::*)() const) static_cast<PCDM_ReaderStatus (PCDM_Reader::*)() const>(&PCDM_Reader::GetStatus),
             R"#(None)#" 
          )
        .def("GetStatus",
             (PCDM_ReaderStatus (PCDM_Reader::*)() const) static_cast<PCDM_ReaderStatus (PCDM_Reader::*)() const>(&PCDM_Reader::GetStatus),
             R"#(None)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&PCDM_Reader::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&PCDM_Reader::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (PCDM_Reader::*)() const) static_cast<const opencascade::handle<Standard_Type> & (PCDM_Reader::*)() const>(&PCDM_Reader::DynamicType),
             R"#(None)#"
             
         )
;

    // Class PCDM_ReaderFilter from ./opencascade/PCDM_ReaderFilter.hxx
    klass = m.attr("PCDM_ReaderFilter");


    // nested enums
        py::enum_<PCDM_ReaderFilter::AppendMode>(klass, "AppendMode_e", R"#(Supported modes of appending the file content into existing document)#")
            .value("AppendMode_Forbid", PCDM_ReaderFilter::AppendMode::AppendMode_Forbid)
            .value("AppendMode_Protect", PCDM_ReaderFilter::AppendMode::AppendMode_Protect)
            .value("AppendMode_Overwrite", PCDM_ReaderFilter::AppendMode::AppendMode_Overwrite).export_values();

    static_cast<py::class_<PCDM_ReaderFilter ,opencascade::handle<PCDM_ReaderFilter>  , Standard_Transient >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<Standard_Type> & >()  , py::arg("theSkipped") )
        .def(py::init< const TCollection_AsciiString & >()  , py::arg("theEntryToRead") )
        .def(py::init< const PCDM_ReaderFilter::AppendMode >()  , py::arg("theAppend") )
    // custom constructors
    // methods
        .def("AddSkipped",
             (void (PCDM_ReaderFilter::*)( const opencascade::handle<Standard_Type> &  ) ) static_cast<void (PCDM_ReaderFilter::*)( const opencascade::handle<Standard_Type> &  ) >(&PCDM_ReaderFilter::AddSkipped),
             R"#(Adds skipped attribute by type.)#"  , py::arg("theSkipped")
          )
        .def("AddSkipped",
             (void (PCDM_ReaderFilter::*)( const TCollection_AsciiString &  ) ) static_cast<void (PCDM_ReaderFilter::*)( const TCollection_AsciiString &  ) >(&PCDM_ReaderFilter::AddSkipped),
             R"#(Adds skipped attribute by type name.)#"  , py::arg("theSkipped")
          )
        .def("AddRead",
             (void (PCDM_ReaderFilter::*)( const opencascade::handle<Standard_Type> &  ) ) static_cast<void (PCDM_ReaderFilter::*)( const opencascade::handle<Standard_Type> &  ) >(&PCDM_ReaderFilter::AddRead),
             R"#(Adds attribute to read by type. Disables the skipped attributes added.)#"  , py::arg("theRead")
          )
        .def("AddRead",
             (void (PCDM_ReaderFilter::*)( const TCollection_AsciiString &  ) ) static_cast<void (PCDM_ReaderFilter::*)( const TCollection_AsciiString &  ) >(&PCDM_ReaderFilter::AddRead),
             R"#(Adds attribute to read by type name. Disables the skipped attributes added.)#"  , py::arg("theRead")
          )
        .def("AddPath",
             (void (PCDM_ReaderFilter::*)( const TCollection_AsciiString &  ) ) static_cast<void (PCDM_ReaderFilter::*)( const TCollection_AsciiString &  ) >(&PCDM_ReaderFilter::AddPath),
             R"#(Adds sub-tree path (like "0:2").)#"  , py::arg("theEntryToRead")
          )
        .def("Clear",
             (void (PCDM_ReaderFilter::*)() ) static_cast<void (PCDM_ReaderFilter::*)() >(&PCDM_ReaderFilter::Clear),
             R"#(Makes filter pass all data.)#" 
          )
        .def("IsPassed",
             (Standard_Boolean (PCDM_ReaderFilter::*)( const opencascade::handle<Standard_Type> &  ) const) static_cast<Standard_Boolean (PCDM_ReaderFilter::*)( const opencascade::handle<Standard_Type> &  ) const>(&PCDM_ReaderFilter::IsPassed),
             R"#(Returns true if attribute must be read.)#"  , py::arg("theAttributeID")
          )
        .def("IsPassedAttr",
             (Standard_Boolean (PCDM_ReaderFilter::*)( const TCollection_AsciiString &  ) const) static_cast<Standard_Boolean (PCDM_ReaderFilter::*)( const TCollection_AsciiString &  ) const>(&PCDM_ReaderFilter::IsPassedAttr),
             R"#(Returns true if attribute must be read.)#"  , py::arg("theAttributeType")
          )
        .def("IsPassed",
             (Standard_Boolean (PCDM_ReaderFilter::*)( const TCollection_AsciiString &  ) const) static_cast<Standard_Boolean (PCDM_ReaderFilter::*)( const TCollection_AsciiString &  ) const>(&PCDM_ReaderFilter::IsPassed),
             R"#(Returns true if content of the label must be read.)#"  , py::arg("theEntry")
          )
        .def("IsSubPassed",
             (Standard_Boolean (PCDM_ReaderFilter::*)( const TCollection_AsciiString &  ) const) static_cast<Standard_Boolean (PCDM_ReaderFilter::*)( const TCollection_AsciiString &  ) const>(&PCDM_ReaderFilter::IsSubPassed),
             R"#(Returns true if some sub-label of the given label is passed.)#"  , py::arg("theEntry")
          )
        .def("IsPartTree",
             (Standard_Boolean (PCDM_ReaderFilter::*)() ) static_cast<Standard_Boolean (PCDM_ReaderFilter::*)() >(&PCDM_ReaderFilter::IsPartTree),
             R"#(Returns true if only part of the document tree will be retrieved.)#" 
          )
        .def("IsAppendMode",
             (Standard_Boolean (PCDM_ReaderFilter::*)() ) static_cast<Standard_Boolean (PCDM_ReaderFilter::*)() >(&PCDM_ReaderFilter::IsAppendMode),
             R"#(Returns true if appending to the document is performed.)#" 
          )
        .def("StartIteration",
             (void (PCDM_ReaderFilter::*)() ) static_cast<void (PCDM_ReaderFilter::*)() >(&PCDM_ReaderFilter::StartIteration),
             R"#(Starts the tree iterator. It is used for fast searching of passed labels if the whole tree of labels is parsed. So, on each iteration step the methods Up and Down must be called after the iteration start.)#" 
          )
        .def("Up",
             (void (PCDM_ReaderFilter::*)() ) static_cast<void (PCDM_ReaderFilter::*)() >(&PCDM_ReaderFilter::Up),
             R"#(Iteration to the child label.)#" 
          )
        .def("Down",
             (void (PCDM_ReaderFilter::*)( const int &  ) ) static_cast<void (PCDM_ReaderFilter::*)( const int &  ) >(&PCDM_ReaderFilter::Down),
             R"#(Iteration to the child with defined tag.)#"  , py::arg("theTag")
          )
        .def("IsPassed",
             (Standard_Boolean (PCDM_ReaderFilter::*)() const) static_cast<Standard_Boolean (PCDM_ReaderFilter::*)() const>(&PCDM_ReaderFilter::IsPassed),
             R"#(Returns true if content of the currently iterated label must be read.)#" 
          )
        .def("IsSubPassed",
             (Standard_Boolean (PCDM_ReaderFilter::*)() const) static_cast<Standard_Boolean (PCDM_ReaderFilter::*)() const>(&PCDM_ReaderFilter::IsSubPassed),
             R"#(Returns true if some sub-label of the currently iterated label is passed.)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&PCDM_ReaderFilter::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&PCDM_ReaderFilter::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Mode",
             (PCDM_ReaderFilter::AppendMode & (PCDM_ReaderFilter::*)() ) static_cast<PCDM_ReaderFilter::AppendMode & (PCDM_ReaderFilter::*)() >(&PCDM_ReaderFilter::Mode),
             R"#(Returns the append mode.)#"
             
             , py::return_value_policy::reference_internal
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (PCDM_ReaderFilter::*)() const) static_cast<const opencascade::handle<Standard_Type> & (PCDM_ReaderFilter::*)() const>(&PCDM_ReaderFilter::DynamicType),
             R"#(None)#"
             
         )
;

    // Class PCDM_Reference from ./opencascade/PCDM_Reference.hxx
    klass = m.attr("PCDM_Reference");


    // nested enums

    static_cast<py::class_<PCDM_Reference , shared_ptr<PCDM_Reference>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const Standard_Integer,const TCollection_ExtendedString &,const Standard_Integer >()  , py::arg("aReferenceIdentifier"),  py::arg("aFileName"),  py::arg("aDocumentVersion") )
    // custom constructors
    // methods
        .def("ReferenceIdentifier",
             (Standard_Integer (PCDM_Reference::*)() const) static_cast<Standard_Integer (PCDM_Reference::*)() const>(&PCDM_Reference::ReferenceIdentifier),
             R"#(None)#" 
          )
        .def("FileName",
             (TCollection_ExtendedString (PCDM_Reference::*)() const) static_cast<TCollection_ExtendedString (PCDM_Reference::*)() const>(&PCDM_Reference::FileName),
             R"#(None)#" 
          )
        .def("DocumentVersion",
             (Standard_Integer (PCDM_Reference::*)() const) static_cast<Standard_Integer (PCDM_Reference::*)() const>(&PCDM_Reference::DocumentVersion),
             R"#(None)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

    // Class PCDM_ReferenceIterator from ./opencascade/PCDM_ReferenceIterator.hxx
    klass = m.attr("PCDM_ReferenceIterator");


    // nested enums

    static_cast<py::class_<PCDM_ReferenceIterator ,opencascade::handle<PCDM_ReferenceIterator>  , Standard_Transient >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<Message_Messenger> & >()  , py::arg("theMessageDriver") )
    // custom constructors
    // methods
        .def("LoadReferences",
             (void (PCDM_ReferenceIterator::*)( const opencascade::handle<CDM_Document> & ,  const opencascade::handle<CDM_MetaData> & ,  const opencascade::handle<CDM_Application> & ,  const Standard_Boolean  ) ) static_cast<void (PCDM_ReferenceIterator::*)( const opencascade::handle<CDM_Document> & ,  const opencascade::handle<CDM_MetaData> & ,  const opencascade::handle<CDM_Application> & ,  const Standard_Boolean  ) >(&PCDM_ReferenceIterator::LoadReferences),
             R"#(None)#"  , py::arg("aDocument"),  py::arg("aMetaData"),  py::arg("anApplication"),  py::arg("UseStorageConfiguration")
          )
        .def("Init",
             (void (PCDM_ReferenceIterator::*)( const opencascade::handle<CDM_MetaData> &  ) ) static_cast<void (PCDM_ReferenceIterator::*)( const opencascade::handle<CDM_MetaData> &  ) >(&PCDM_ReferenceIterator::Init),
             R"#(None)#"  , py::arg("aMetaData")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&PCDM_ReferenceIterator::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&PCDM_ReferenceIterator::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (PCDM_ReferenceIterator::*)() const) static_cast<const opencascade::handle<Standard_Type> & (PCDM_ReferenceIterator::*)() const>(&PCDM_ReferenceIterator::DynamicType),
             R"#(None)#"
             
         )
;

    // Class PCDM_Writer from ./opencascade/PCDM_Writer.hxx
    klass = m.attr("PCDM_Writer");


    // nested enums

    static_cast<py::class_<PCDM_Writer ,opencascade::handle<PCDM_Writer> ,Py_PCDM_Writer , Standard_Transient >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("Write",
             (void (PCDM_Writer::*)( const opencascade::handle<CDM_Document> & ,  const TCollection_ExtendedString & ,  const Message_ProgressRange &  ) ) static_cast<void (PCDM_Writer::*)( const opencascade::handle<CDM_Document> & ,  const TCollection_ExtendedString & ,  const Message_ProgressRange &  ) >(&PCDM_Writer::Write),
             R"#(None)#"  , py::arg("aDocument"),  py::arg("aFileName"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("Write",
             (void (PCDM_Writer::*)( const opencascade::handle<CDM_Document> & ,  std::ostream & ,  const Message_ProgressRange &  ) ) static_cast<void (PCDM_Writer::*)( const opencascade::handle<CDM_Document> & ,  std::ostream & ,  const Message_ProgressRange &  ) >(&PCDM_Writer::Write),
             R"#(Write <theDocument> to theOStream)#"  , py::arg("theDocument"),  py::arg("theOStream"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&PCDM_Writer::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&PCDM_Writer::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (PCDM_Writer::*)() const) static_cast<const opencascade::handle<Standard_Type> & (PCDM_Writer::*)() const>(&PCDM_Writer::DynamicType),
             R"#(None)#"
             
         )
;

    // Class PCDM_ReadWriter_1 from ./opencascade/PCDM_ReadWriter_1.hxx
    klass = m.attr("PCDM_ReadWriter_1");


    // nested enums

    static_cast<py::class_<PCDM_ReadWriter_1 ,opencascade::handle<PCDM_ReadWriter_1>  , PCDM_ReadWriter >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Version",
             (TCollection_AsciiString (PCDM_ReadWriter_1::*)() const) static_cast<TCollection_AsciiString (PCDM_ReadWriter_1::*)() const>(&PCDM_ReadWriter_1::Version),
             R"#(returns PCDM_ReadWriter_1.)#" 
          )
        .def("WriteReferenceCounter",
             (void (PCDM_ReadWriter_1::*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> &  ) const) static_cast<void (PCDM_ReadWriter_1::*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> &  ) const>(&PCDM_ReadWriter_1::WriteReferenceCounter),
             R"#(None)#"  , py::arg("aData"),  py::arg("aDocument")
          )
        .def("WriteReferences",
             (void (PCDM_ReadWriter_1::*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> & ,  const TCollection_ExtendedString &  ) const) static_cast<void (PCDM_ReadWriter_1::*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> & ,  const TCollection_ExtendedString &  ) const>(&PCDM_ReadWriter_1::WriteReferences),
             R"#(None)#"  , py::arg("aData"),  py::arg("aDocument"),  py::arg("theReferencerFileName")
          )
        .def("WriteExtensions",
             (void (PCDM_ReadWriter_1::*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> &  ) const) static_cast<void (PCDM_ReadWriter_1::*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> &  ) const>(&PCDM_ReadWriter_1::WriteExtensions),
             R"#(None)#"  , py::arg("aData"),  py::arg("aDocument")
          )
        .def("WriteVersion",
             (void (PCDM_ReadWriter_1::*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> &  ) const) static_cast<void (PCDM_ReadWriter_1::*)( const opencascade::handle<Storage_Data> & ,  const opencascade::handle<CDM_Document> &  ) const>(&PCDM_ReadWriter_1::WriteVersion),
             R"#(None)#"  , py::arg("aData"),  py::arg("aDocument")
          )
        .def("ReadReferenceCounter",
             (Standard_Integer (PCDM_ReadWriter_1::*)( const TCollection_ExtendedString & ,  const opencascade::handle<Message_Messenger> &  ) const) static_cast<Standard_Integer (PCDM_ReadWriter_1::*)( const TCollection_ExtendedString & ,  const opencascade::handle<Message_Messenger> &  ) const>(&PCDM_ReadWriter_1::ReadReferenceCounter),
             R"#(None)#"  , py::arg("aFileName"),  py::arg("theMsgDriver")
          )
        .def("ReadReferences",
             (void (PCDM_ReadWriter_1::*)( const TCollection_ExtendedString & ,  NCollection_Sequence<PCDM_Reference> & ,  const opencascade::handle<Message_Messenger> &  ) const) static_cast<void (PCDM_ReadWriter_1::*)( const TCollection_ExtendedString & ,  NCollection_Sequence<PCDM_Reference> & ,  const opencascade::handle<Message_Messenger> &  ) const>(&PCDM_ReadWriter_1::ReadReferences),
             R"#(None)#"  , py::arg("aFileName"),  py::arg("theReferences"),  py::arg("theMsgDriver")
          )
        .def("ReadExtensions",
             (void (PCDM_ReadWriter_1::*)( const TCollection_ExtendedString & ,  NCollection_Sequence<TCollection_ExtendedString> & ,  const opencascade::handle<Message_Messenger> &  ) const) static_cast<void (PCDM_ReadWriter_1::*)( const TCollection_ExtendedString & ,  NCollection_Sequence<TCollection_ExtendedString> & ,  const opencascade::handle<Message_Messenger> &  ) const>(&PCDM_ReadWriter_1::ReadExtensions),
             R"#(None)#"  , py::arg("aFileName"),  py::arg("theExtensions"),  py::arg("theMsgDriver")
          )
        .def("ReadDocumentVersion",
             (Standard_Integer (PCDM_ReadWriter_1::*)( const TCollection_ExtendedString & ,  const opencascade::handle<Message_Messenger> &  ) const) static_cast<Standard_Integer (PCDM_ReadWriter_1::*)( const TCollection_ExtendedString & ,  const opencascade::handle<Message_Messenger> &  ) const>(&PCDM_ReadWriter_1::ReadDocumentVersion),
             R"#(None)#"  , py::arg("aFileName"),  py::arg("theMsgDriver")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&PCDM_ReadWriter_1::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&PCDM_ReadWriter_1::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (PCDM_ReadWriter_1::*)() const) static_cast<const opencascade::handle<Standard_Type> & (PCDM_ReadWriter_1::*)() const>(&PCDM_ReadWriter_1::DynamicType),
             R"#(None)#"
             
         )
;

    // Class PCDM_RetrievalDriver from ./opencascade/PCDM_RetrievalDriver.hxx
    klass = m.attr("PCDM_RetrievalDriver");


    // nested enums

    static_cast<py::class_<PCDM_RetrievalDriver ,opencascade::handle<PCDM_RetrievalDriver> ,Py_PCDM_RetrievalDriver , PCDM_Reader >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("SetFormat",
             (void (PCDM_RetrievalDriver::*)( const TCollection_ExtendedString &  ) ) static_cast<void (PCDM_RetrievalDriver::*)( const TCollection_ExtendedString &  ) >(&PCDM_RetrievalDriver::SetFormat),
             R"#(None)#"  , py::arg("aformat")
          )
        .def("GetFormat",
             (TCollection_ExtendedString (PCDM_RetrievalDriver::*)() const) static_cast<TCollection_ExtendedString (PCDM_RetrievalDriver::*)() const>(&PCDM_RetrievalDriver::GetFormat),
             R"#(None)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("DocumentVersion_s",
                    (Standard_Integer (*)( const TCollection_ExtendedString & ,  const opencascade::handle<Message_Messenger> &  ) ) static_cast<Standard_Integer (*)( const TCollection_ExtendedString & ,  const opencascade::handle<Message_Messenger> &  ) >(&PCDM_RetrievalDriver::DocumentVersion),
                    R"#(None)#"  , py::arg("theFileName"),  py::arg("theMsgDriver")
          )
        .def_static("ReferenceCounter_s",
                    (Standard_Integer (*)( const TCollection_ExtendedString & ,  const opencascade::handle<Message_Messenger> &  ) ) static_cast<Standard_Integer (*)( const TCollection_ExtendedString & ,  const opencascade::handle<Message_Messenger> &  ) >(&PCDM_RetrievalDriver::ReferenceCounter),
                    R"#(None)#"  , py::arg("theFileName"),  py::arg("theMsgDriver")
          )
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&PCDM_RetrievalDriver::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&PCDM_RetrievalDriver::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (PCDM_RetrievalDriver::*)() const) static_cast<const opencascade::handle<Standard_Type> & (PCDM_RetrievalDriver::*)() const>(&PCDM_RetrievalDriver::DynamicType),
             R"#(None)#"
             
         )
;

    // Class PCDM_StorageDriver from ./opencascade/PCDM_StorageDriver.hxx
    klass = m.attr("PCDM_StorageDriver");

    // default constructor
    register_default_constructor<PCDM_StorageDriver ,opencascade::handle<PCDM_StorageDriver>>(m,"PCDM_StorageDriver");

    // nested enums

    static_cast<py::class_<PCDM_StorageDriver ,opencascade::handle<PCDM_StorageDriver>  , PCDM_Writer >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("Make",
             (opencascade::handle<PCDM_Document> (PCDM_StorageDriver::*)( const opencascade::handle<CDM_Document> &  ) ) static_cast<opencascade::handle<PCDM_Document> (PCDM_StorageDriver::*)( const opencascade::handle<CDM_Document> &  ) >(&PCDM_StorageDriver::Make),
             R"#(raises NotImplemented.)#"  , py::arg("aDocument")
          )
        .def("Make",
             (void (PCDM_StorageDriver::*)( const opencascade::handle<CDM_Document> & ,  NCollection_Sequence<opencascade::handle<PCDM_Document>> &  ) ) static_cast<void (PCDM_StorageDriver::*)( const opencascade::handle<CDM_Document> & ,  NCollection_Sequence<opencascade::handle<PCDM_Document>> &  ) >(&PCDM_StorageDriver::Make),
             R"#(By default, puts in the Sequence the document returns by the previous Make method.)#"  , py::arg("aDocument"),  py::arg("Documents")
          )
        .def("Write",
             (void (PCDM_StorageDriver::*)( const opencascade::handle<CDM_Document> & ,  const TCollection_ExtendedString & ,  const Message_ProgressRange &  ) ) static_cast<void (PCDM_StorageDriver::*)( const opencascade::handle<CDM_Document> & ,  const TCollection_ExtendedString & ,  const Message_ProgressRange &  ) >(&PCDM_StorageDriver::Write),
             R"#(Warning! raises DriverError if an error occurs during inside the Make method. stores the content of the Document into a new file.)#"  , py::arg("aDocument"),  py::arg("aFileName"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("Write",
             (void (PCDM_StorageDriver::*)( const opencascade::handle<CDM_Document> & ,  std::ostream & ,  const Message_ProgressRange &  ) ) static_cast<void (PCDM_StorageDriver::*)( const opencascade::handle<CDM_Document> & ,  std::ostream & ,  const Message_ProgressRange &  ) >(&PCDM_StorageDriver::Write),
             R"#(Write <theDocument> to theOStream)#"  , py::arg("theDocument"),  py::arg("theOStream"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("SetFormat",
             (void (PCDM_StorageDriver::*)( const TCollection_ExtendedString &  ) ) static_cast<void (PCDM_StorageDriver::*)( const TCollection_ExtendedString &  ) >(&PCDM_StorageDriver::SetFormat),
             R"#(None)#"  , py::arg("aformat")
          )
        .def("GetFormat",
             (TCollection_ExtendedString (PCDM_StorageDriver::*)() const) static_cast<TCollection_ExtendedString (PCDM_StorageDriver::*)() const>(&PCDM_StorageDriver::GetFormat),
             R"#(None)#" 
          )
        .def("IsError",
             (Standard_Boolean (PCDM_StorageDriver::*)() const) static_cast<Standard_Boolean (PCDM_StorageDriver::*)() const>(&PCDM_StorageDriver::IsError),
             R"#(None)#" 
          )
        .def("SetIsError",
             (void (PCDM_StorageDriver::*)( const Standard_Boolean  ) ) static_cast<void (PCDM_StorageDriver::*)( const Standard_Boolean  ) >(&PCDM_StorageDriver::SetIsError),
             R"#(None)#"  , py::arg("theIsError")
          )
        .def("GetStoreStatus",
             (PCDM_StoreStatus (PCDM_StorageDriver::*)() const) static_cast<PCDM_StoreStatus (PCDM_StorageDriver::*)() const>(&PCDM_StorageDriver::GetStoreStatus),
             R"#(None)#" 
          )
        .def("SetStoreStatus",
             (void (PCDM_StorageDriver::*)( const PCDM_StoreStatus  ) ) static_cast<void (PCDM_StorageDriver::*)( const PCDM_StoreStatus  ) >(&PCDM_StorageDriver::SetStoreStatus),
             R"#(None)#"  , py::arg("theStoreStatus")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&PCDM_StorageDriver::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&PCDM_StorageDriver::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (PCDM_StorageDriver::*)() const) static_cast<const opencascade::handle<Standard_Type> & (PCDM_StorageDriver::*)() const>(&PCDM_StorageDriver::DynamicType),
             R"#(None)#"
             
         )
;

// functions
// ./opencascade/PCDM.hxx
// ./opencascade/PCDM_BaseDriverPointer.hxx
// ./opencascade/PCDM_DOMHeaderParser.hxx
// ./opencascade/PCDM_Document.hxx
// ./opencascade/PCDM_DriverError.hxx
// ./opencascade/PCDM_ReadWriter.hxx
// ./opencascade/PCDM_ReadWriter_1.hxx
// ./opencascade/PCDM_Reader.hxx
// ./opencascade/PCDM_ReaderFilter.hxx
// ./opencascade/PCDM_ReaderStatus.hxx
// ./opencascade/PCDM_Reference.hxx
// ./opencascade/PCDM_ReferenceIterator.hxx
// ./opencascade/PCDM_RetrievalDriver.hxx
// ./opencascade/PCDM_SequenceOfDocument.hxx
// ./opencascade/PCDM_SequenceOfReference.hxx
// ./opencascade/PCDM_StorageDriver.hxx
// ./opencascade/PCDM_StoreStatus.hxx
// ./opencascade/PCDM_TypeOfFileDriver.hxx
// ./opencascade/PCDM_Writer.hxx

// Additional functions

// operators

// register typdefs
    register_template_NCollection_Sequence<opencascade::handle<PCDM_Document>>(m,"PCDM_SequenceOfDocument");
    register_template_NCollection_Sequence<PCDM_Reference>(m,"PCDM_SequenceOfReference");


// exceptions
register_occ_exception<PCDM_DriverError>(m, "PCDM_DriverError");

// user-defined post-inclusion per module in the body

};

// user-defined post-inclusion per module

// user-defined post