49 if(byteOrder == Isis::NoByteOrder)
return "None";
50 if(byteOrder == Isis::Lsb)
return "Lsb";
51 if(byteOrder == Isis::Msb)
return "Msb";
56 QString temp = order.toUpper();
57 if(temp ==
"LSB")
return Isis::Lsb;
58 if(temp ==
"MSB")
return Isis::Msb;
59 return Isis::NoByteOrder;
74 if(test.b[0] == 0)
return false;
ByteOrder
Tests the current architecture for byte order.
This is free and unencumbered software released into the public domain.
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.