summaryrefslogtreecommitdiff
path: root/inc/TFunction_Logbook.lxx
blob: 9b116cdc1f9b0a99a719f1a53c69990f8a49d65b (plain)
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;
}