blob: b63aca9319e6d3ac05899f866dbe12581b2e9431 (
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
|
// File: BinMDF_ADriver.lxx
// Created: 29.10.02 19:33:46
// Author: Michael SAZONOV
// Copyright: Open CASCADE 2002
#include <TDF_Attribute.hxx>
//=======================================================================
//function : SourceType
//purpose :
//=======================================================================
inline const Handle(Standard_Type)& BinMDF_ADriver::SourceType () const
{
return NewEmpty() -> DynamicType();
}
//=======================================================================
//function : TypeName
//purpose :
//=======================================================================
inline const TCollection_AsciiString& BinMDF_ADriver::TypeName () const
{
if (myTypeName.Length() == 0)
(TCollection_AsciiString&)myTypeName += SourceType()->Name();
return myTypeName;
}
|