mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-09-03 14:10:33 +03:00
22 lines
664 B
C++
Executable File
22 lines
664 B
C++
Executable File
|
|
#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"; }
|