1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0024927: Getting rid of "Persistent" functionality -- Samples and data

Support of old persistence (CSFDB format) is removed from OCCT samples (C#, MFC and Qt)

Motor model from data/csfdb is converted from CSFDB to BRep format and put to data/occ (Motor-c.brep)
This commit is contained in:
dln
2014-08-26 16:15:24 +04:00
committed by bugmaster
parent e837410dac
commit 41f0360528
94 changed files with 18136 additions and 1395 deletions

View File

@@ -14,7 +14,7 @@ class IESAMPLE_EXPORT Translate: public QObject
Q_OBJECT
public:
enum { FormatBREP, FormatIGES, FormatSTEP, FormatCSFDB, FormatVRML, FormatSTL };
enum { FormatBREP, FormatIGES, FormatSTEP, FormatVRML, FormatSTL };
Translate( QObject* );
~Translate();
@@ -39,12 +39,10 @@ private:
Handle(TopTools_HSequenceOfShape) importBREP( const QString& );
Handle(TopTools_HSequenceOfShape) importIGES( const QString& );
Handle(TopTools_HSequenceOfShape) importSTEP( const QString& );
Handle(TopTools_HSequenceOfShape) importCSFDB( const QString& );
bool exportBREP( const QString&, const Handle(TopTools_HSequenceOfShape)& );
bool exportIGES( const QString&, const Handle(TopTools_HSequenceOfShape)& );
bool exportSTEP( const QString&, const Handle(TopTools_HSequenceOfShape)& );
bool exportCSFDB( const QString&, const Handle(TopTools_HSequenceOfShape)& );
bool exportSTL( const QString&, const Handle(TopTools_HSequenceOfShape)& );
bool exportVRML( const QString&, const Handle(TopTools_HSequenceOfShape)& );