mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-12 02:40:22 +08:00
24 lines
810 B
Plaintext
Executable File
24 lines
810 B
Plaintext
Executable File
// File: TDataStd_HDataMapOfStringByte.lxx
|
|
// Created: Fri Aug 17 17:00:33 2007
|
|
// Author: Sergey ZARITCHNY
|
|
// <szy@popox.nnov.matra-dtv.fr>
|
|
// Copyright: Open CasCade SA 2007
|
|
|
|
//=======================================================================
|
|
//function : Map
|
|
//purpose : Access to the map
|
|
//=======================================================================
|
|
inline const TDataStd_DataMapOfStringByte& TDataStd_HDataMapOfStringByte::Map () const
|
|
{
|
|
return myMap;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : ChangeMap
|
|
//purpose : Access to the map for modification
|
|
//=======================================================================
|
|
inline TDataStd_DataMapOfStringByte& TDataStd_HDataMapOfStringByte::ChangeMap ()
|
|
{
|
|
return myMap;
|
|
}
|