0022797: Returning type Handle(Standard_Type)& should be changed to const Handle...
[occt.git] / src / Standard / Standard_Address.cxx
CommitLineData
7fd59977 1
2#include <Standard_Address.hxx>
3#include <Standard_Type.hxx>
4#ifndef _Standard_OStream_HeaderFile
5#include <Standard_OStream.hxx>
6#endif
7
34781c33 8const Handle_Standard_Type& Standard_Address_Type_()
7fd59977 9{
10 static Handle_Standard_Type _aType =
11 new Standard_Type("Standard_Address", sizeof(Standard_Address),0,NULL);
12
13 return _aType;
14}
15
16
17//============================================================================
18//==== ShallowDump : Writes a CString value.
19//============================================================================
20Standard_EXPORT void ShallowDump (const Standard_Address Value, Standard_OStream& s)
21{ s << Value << " Standard_Address " << "\n"; }