blob: a6e05068bc5537a1226e9186d9843a3b7c0c1157 (
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
33
34
35
36
37
38
39
|
#include <AlienImage_SUNRFFileHeader.hxx>
const Handle(Standard_Type)& STANDARD_TYPE(AlienImage_SUNRFFileHeader)
{
static Handle(Standard_Type) _atype =
new Standard_Type ("AlienImage_SUNRFFileHeader", sizeof (AlienImage_SUNRFFileHeader));
return _atype;
}
Standard_Boolean operator == ( const AlienImage_SUNRFFileHeader& AnObject,
const AlienImage_SUNRFFileHeader& AnotherObject )
{ Standard_Boolean _result = Standard_True;
return _result;
}
//============================================================================
//==== ShallowDump : Writes a CString value.
//============================================================================
void ShallowDump (const AlienImage_SUNRFFileHeader& AnObject, Standard_OStream& s)
{
s << AnObject ;
}
ostream& operator << ( ostream& s, const AlienImage_SUNRFFileHeader& c )
{
return( s << "AlienImage_SUNRFFileHeader :"
<< "\n\tmagic :" << c.ras_magic
<< "\n\twidth :" << c.ras_width
<< "\n\theight :" << c.ras_height
<< "\n\tdepth :" << c.ras_depth
<< "\n\tlength :" << c.ras_length
<< "\n\tmaptype :" << c.ras_maptype
<< "\n\tmaplength:" << c.ras_maplength << endl << flush );
}
|