2023-06-19 21:32:54 +05:00
|
|
|
// Copyright (C) 2014-2023 CEA, EDF, OPEN CASCADE
|
2013-10-02 19:13:33 +06:00
|
|
|
//
|
2014-02-18 12:44:41 +06:00
|
|
|
// This library 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 2.1 of the License, or (at your option) any later version.
|
2013-10-02 19:13:33 +06:00
|
|
|
//
|
2014-02-18 12:44:41 +06:00
|
|
|
// This library 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.
|
2013-10-02 19:13:33 +06:00
|
|
|
//
|
2014-02-18 12:44:41 +06:00
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2013-10-02 19:13:33 +06:00
|
|
|
//
|
2014-02-18 12:44:41 +06:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2013-10-02 19:13:33 +06:00
|
|
|
//
|
2014-06-04 17:17:38 +06:00
|
|
|
// File : IGESPlugin_IOperations.hxx
|
2013-10-02 19:13:33 +06:00
|
|
|
|
2014-06-04 17:17:38 +06:00
|
|
|
#ifndef _IGESPlugin_IOperations_HXX_
|
|
|
|
#define _IGESPlugin_IOperations_HXX_
|
2013-10-02 19:13:33 +06:00
|
|
|
|
2014-06-04 17:17:38 +06:00
|
|
|
// internal includes
|
|
|
|
#include "IGESPlugin_Engine.hxx"
|
2013-10-02 19:13:33 +06:00
|
|
|
|
2014-06-04 17:17:38 +06:00
|
|
|
// GEOM includes
|
|
|
|
#include "GEOMImpl_IBaseIEOperations.hxx"
|
2013-10-02 19:13:33 +06:00
|
|
|
|
2014-06-04 17:17:38 +06:00
|
|
|
class IGESPLUGINENGINE_EXPORT IGESPlugin_IOperations: public GEOMImpl_IBaseIEOperations
|
2013-10-02 19:13:33 +06:00
|
|
|
{
|
|
|
|
public:
|
2017-06-13 14:57:14 +05:00
|
|
|
IGESPlugin_IOperations( GEOM_Engine* );
|
2014-06-04 17:17:38 +06:00
|
|
|
~IGESPlugin_IOperations();
|
2013-10-02 19:13:33 +06:00
|
|
|
|
2014-06-04 17:17:38 +06:00
|
|
|
void ExportIGES( const Handle(GEOM_Object),
|
|
|
|
const TCollection_AsciiString&,
|
|
|
|
const TCollection_AsciiString& );
|
|
|
|
|
|
|
|
Handle(TColStd_HSequenceOfTransient) ImportIGES( const TCollection_AsciiString&,
|
|
|
|
const bool );
|
|
|
|
|
|
|
|
TCollection_AsciiString ReadValue( const TCollection_AsciiString&,
|
|
|
|
const TCollection_AsciiString& );
|
2013-10-02 19:13:33 +06:00
|
|
|
};
|
|
|
|
|
2014-06-04 17:17:38 +06:00
|
|
|
#endif
|