66 if(byteOrder == Isis::NoByteOrder)
return "None";
67 if(byteOrder == Isis::Lsb)
return "Lsb";
68 if(byteOrder == Isis::Msb)
return "Msb";
73 QString temp = order.toUpper();
74 if(temp ==
"LSB")
return Isis::Lsb;
75 if(temp ==
"MSB")
return Isis::Msb;
76 return Isis::NoByteOrder;
91 if(test.b[0] == 0)
return false;
ByteOrder
Tests the current architecture for byte order.
bool IsLsb()
Return true if this host is an LSB first machine and false if it is not.
bool IsMsb()
Return true if this host is an MSB first machine and false if it is not.