/usr/include/oce/TFunction_Logbook.lxx is in liboce-ocaf-lite-dev 0.9.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | // File: TFunction_Logbook.lxx
// Created: Tue Jul 20 15:27:43 1999
// Author: Vladislav ROMASHKO
// <vro@flox.nnov.matra-dtv.fr>
inline void TFunction_Logbook::SetTouched(const TDF_Label& L)
{
myTouched.Add(L);
}
inline const TDF_LabelMap& TFunction_Logbook::GetTouched() const
{
return myTouched;
}
inline const TDF_LabelMap& TFunction_Logbook::GetImpacted() const
{
return myImpacted;
}
inline TDF_LabelMap& TFunction_Logbook::ChangeValid()
{
return myValid;
}
inline const TDF_LabelMap& TFunction_Logbook::GetValid() const
{
return myValid;
}
inline void TFunction_Logbook::Done(const Standard_Boolean status)
{
isDone = status;
}
inline Standard_Boolean TFunction_Logbook::IsDone() const
{
return isDone;
}
|