mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-12 18:29:35 +08:00
24 lines
742 B
C++
Executable File
24 lines
742 B
C++
Executable File
// File: PCDM_Reference.cxx
|
|
// Created: Tue Dec 9 09:22:54 1997
|
|
// Author: Jean-Louis Frenkel
|
|
// <rmi@frilox.paris1.matra-dtv.fr>
|
|
|
|
|
|
#include <PCDM_Reference.ixx>
|
|
|
|
PCDM_Reference::PCDM_Reference(){}
|
|
PCDM_Reference::PCDM_Reference(const Standard_Integer aReferenceIdentifier, const TCollection_ExtendedString& aFileName, const Standard_Integer aDocumentVersion):myReferenceIdentifier(aReferenceIdentifier),myFileName(aFileName),myDocumentVersion(aDocumentVersion) {}
|
|
|
|
|
|
Standard_Integer PCDM_Reference::ReferenceIdentifier() const {
|
|
return myReferenceIdentifier;
|
|
}
|
|
|
|
TCollection_ExtendedString PCDM_Reference::FileName() const {
|
|
return myFileName;
|
|
}
|
|
|
|
Standard_Integer PCDM_Reference::DocumentVersion() const {
|
|
return myDocumentVersion;
|
|
}
|