blob: a1b71eb53da49f9d1846abe1b1582522ff2441b8 (
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
|
#include <AlienImage_SGIRGBFileHeader.hxx>
const Handle(Standard_Type)& STANDARD_TYPE(AlienImage_SGIRGBFileHeader)
{
static Handle(Standard_Type) _atype =
new Standard_Type ("AlienImage_SGIRGBFileHeader", sizeof (AlienImage_SGIRGBFileHeader));
return _atype;
}
Standard_Boolean operator == ( const AlienImage_SGIRGBFileHeader& AnObject,
const AlienImage_SGIRGBFileHeader& AnotherObject )
{ Standard_Boolean _result = Standard_True;
return _result;
}
//============================================================================
//==== ShallowDump : Writes a CString value.
//============================================================================
void ShallowDump (const AlienImage_SGIRGBFileHeader& AnObject, Standard_OStream& s)
{
s << "AlienImage_SGIRGBFileHeader\n" ;
}
ostream& operator << ( ostream& s, const AlienImage_SGIRGBFileHeader& c )
{
return( s << "AlienImage_SGIRGBFileHeader " );
}
|