0022627: Change OCCT memory management defaults
[occt.git] / src / AlienImage / AlienImage_SUNRFFileHeader.cxx
1 #include <AlienImage_SUNRFFileHeader.hxx>
2
3 const Handle(Standard_Type)& STANDARD_TYPE(AlienImage_SUNRFFileHeader)
4 {
5   static Handle(Standard_Type) _atype = 
6     new Standard_Type ("AlienImage_SUNRFFileHeader", sizeof (AlienImage_SUNRFFileHeader));
7   return _atype;
8 }
9
10 Standard_Boolean  operator == ( const AlienImage_SUNRFFileHeader& AnObject,
11                                 const AlienImage_SUNRFFileHeader& AnotherObject )
12
13 { Standard_Boolean _result = Standard_True; 
14
15  return _result;
16 }
17
18 //============================================================================
19 //==== ShallowDump : Writes a CString value.
20 //============================================================================
21 void ShallowDump (const AlienImage_SUNRFFileHeader& AnObject, Standard_OStream& s)
22
23 {
24         s << AnObject ;
25 }
26
27 ostream& operator << ( ostream& s,  const AlienImage_SUNRFFileHeader& c )
28
29 {
30   return( s     << "AlienImage_SUNRFFileHeader :" 
31                 << "\n\tmagic    :" << c.ras_magic 
32                 << "\n\twidth    :" << c.ras_width
33                 << "\n\theight   :" << c.ras_height
34                 << "\n\tdepth    :" << c.ras_depth
35                 << "\n\tlength   :" << c.ras_length
36                 << "\n\tmaptype  :" << c.ras_maptype
37                 << "\n\tmaplength:" << c.ras_maplength << endl << flush );
38 }
39