summaryrefslogtreecommitdiff
path: root/src/Standard/Standard_Address.cxx
blob: 3ba1de0127882d758132ab0fdf73719249e1057e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#include <Standard_Address.hxx>
#include <Standard_Type.hxx> 
#ifndef _Standard_OStream_HeaderFile
#include <Standard_OStream.hxx>
#endif

Handle_Standard_Type& Standard_Address_Type_() 
{
  static Handle_Standard_Type _aType = 
    new Standard_Type("Standard_Address", sizeof(Standard_Address),0,NULL);

  return _aType;
}


//============================================================================
//==== ShallowDump : Writes a CString value.
//============================================================================
Standard_EXPORT void ShallowDump (const Standard_Address Value, Standard_OStream& s)
{ s << Value << " Standard_Address " << "\n"; }