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