95 std::vector<unsigned long> v(2);
96 if ( !byte_order_known ) fill_byte_order ();
99 v[0] = ((
static_cast<unsigned long>(db.b[byte_order[0]])) << 24)
100 | ((
static_cast<unsigned long>(db.b[byte_order[1]])) << 16)
101 | ((
static_cast<unsigned long>(db.b[byte_order[2]])) << 8)
102 | ((
static_cast<unsigned long>(db.b[byte_order[3]])) );
103 v[1] = ((
static_cast<unsigned long>(db.b[byte_order[4]])) << 24)
104 | ((
static_cast<unsigned long>(db.b[byte_order[5]])) << 16)
105 | ((
static_cast<unsigned long>(db.b[byte_order[6]])) << 8)
106 | ((
static_cast<unsigned long>(db.b[byte_order[7]])) );