blob: a7d3214b757183c9c419d07d18977bfe1d8da39c (
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
|
// File: TObj_HiddenPartition.cxx
// Created: Tue Nov 23 11:39:12 2004
// Author: Pavel TELKOV
// Copyright: Open CASCADE 2007
// The original implementation Copyright: (C) RINA S.p.A
#include <TObj_HiddenPartition.hxx>
IMPLEMENT_STANDARD_HANDLE(TObj_HiddenPartition, TObj_Partition)
IMPLEMENT_STANDARD_RTTIEXT(TObj_HiddenPartition, TObj_Partition)
IMPLEMENT_TOBJOCAF_PERSISTENCE(TObj_HiddenPartition)
//=======================================================================
//function : TObj_HiddenPartition
//purpose : constructor
//=======================================================================
Standard_EXPORT TObj_HiddenPartition::TObj_HiddenPartition
(const TDF_Label& theLabel):
TObj_Partition(theLabel)
{
}
//=======================================================================
//function : GetTypeFlags
//purpose :
//=======================================================================
Standard_Integer TObj_HiddenPartition::GetTypeFlags() const
{
return TObj_Partition::GetTypeFlags() & (~Visible);
}
|