File indexing completed on 2026-09-15 09:16:48
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _PCDM_Reference_HeaderFile
0018 #define _PCDM_Reference_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_DefineAlloc.hxx>
0022 #include <Standard_Handle.hxx>
0023
0024 #include <TCollection_ExtendedString.hxx>
0025
0026 class PCDM_Reference
0027 {
0028 public:
0029 DEFINE_STANDARD_ALLOC
0030
0031 Standard_EXPORT PCDM_Reference();
0032
0033 Standard_EXPORT PCDM_Reference(const int aReferenceIdentifier,
0034 const TCollection_ExtendedString& aFileName,
0035 const int aDocumentVersion);
0036
0037 Standard_EXPORT int ReferenceIdentifier() const;
0038
0039 Standard_EXPORT TCollection_ExtendedString FileName() const;
0040
0041 Standard_EXPORT int DocumentVersion() const;
0042
0043 private:
0044 int myReferenceIdentifier;
0045 TCollection_ExtendedString myFileName;
0046 int myDocumentVersion;
0047 };
0048
0049 #endif