0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / PCDM / PCDM_RetrievalDriver.cxx
CommitLineData
b311480e 1// Created on: 1997-08-07
2// Created by: Jean-Louis Frenkel
3// Copyright (c) 1997-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
42cf5bc1 17
83ae3591 18#include <Message_Messenger.hxx>
42cf5bc1 19#include <CDM_MetaData.hxx>
42cf5bc1 20#include <PCDM_ReadWriter.hxx>
21#include <PCDM_RetrievalDriver.hxx>
42cf5bc1 22#include <Resource_Manager.hxx>
42cf5bc1 23#include <Standard_Type.hxx>
42cf5bc1 24#include <TCollection_ExtendedString.hxx>
7fd59977 25
92efcf78 26IMPLEMENT_STANDARD_RTTIEXT(PCDM_RetrievalDriver,PCDM_Reader)
27
83ae3591 28void PCDM_RetrievalDriver::References(const TCollection_ExtendedString& aFileName, PCDM_SequenceOfReference& theReferences, const Handle(Message_Messenger)& theMsgDriver)
7ed7467d 29 { PCDM_ReadWriter::Reader(aFileName)->ReadReferences(aFileName, theReferences, theMsgDriver);}
7fd59977 30
83ae3591 31Standard_Integer PCDM_RetrievalDriver::DocumentVersion(const TCollection_ExtendedString& aFileName, const Handle(Message_Messenger)& theMsgDriver)
7ed7467d 32 { return PCDM_ReadWriter::Reader(aFileName)->ReadDocumentVersion(aFileName, theMsgDriver); }
7fd59977 33
83ae3591 34Standard_Integer PCDM_RetrievalDriver::ReferenceCounter(const TCollection_ExtendedString& aFileName, const Handle(Message_Messenger)& theMsgDriver)
7ed7467d 35 { return PCDM_ReadWriter::Reader(aFileName)->ReadReferenceCounter(aFileName, theMsgDriver); }
7fd59977 36
37void PCDM_RetrievalDriver::SetFormat (const TCollection_ExtendedString& aformat)
7ed7467d 38 { myFormat = aformat; }
7fd59977 39
40TCollection_ExtendedString PCDM_RetrievalDriver::GetFormat () const
7ed7467d 41 { return myFormat; }