#include <scsi_types.h>
Definition at line 227 of file scsi_types.h.
Public Member Functions | |
| scsi_UInt32 () | |
| scsi_UInt32 (UInt32_t a_uint) | |
| scsi_UInt32 (const scsi_UInt32_t &a_buf) | |
| scsi_UInt32 & | operator= (UInt32_t a_uint) |
| scsi_UInt32 & | operator= (const scsi_UInt32_t &a_buf) |
| operator UInt32_t () const | |
Private Attributes | |
| scsi_UInt32_t | m_data |
| scsi_UInt32::scsi_UInt32 | ( | ) | [inline] |
| scsi_UInt32::scsi_UInt32 | ( | UInt32_t | a_uint | ) | [inline] |
| scsi_UInt32::scsi_UInt32 | ( | const scsi_UInt32_t & | a_buf | ) | [inline, explicit] |
Definition at line 238 of file scsi_types.h.
00238 { 00239 m_data[0] = a_buf[0], m_data[1] = a_buf[1], 00240 m_data[2] = a_buf[2], m_data[3] = a_buf[3]; 00241 };
| scsi_UInt32& scsi_UInt32::operator= | ( | UInt32_t | a_uint | ) | [inline] |
Definition at line 243 of file scsi_types.h.
00243 { 00244 UInt32_t* data_p = reinterpret_cast<UInt32_t*>(m_data); *data_p = a_uint; 00245 return (*this); 00246 };
| scsi_UInt32& scsi_UInt32::operator= | ( | const scsi_UInt32_t & | a_buf | ) | [inline] |
Definition at line 248 of file scsi_types.h.
00248 { 00249 m_data[0] = a_buf[0], m_data[1] = a_buf[1], 00250 m_data[2] = a_buf[2], m_data[3] = a_buf[3]; 00251 return (*this); 00252 };
| scsi_UInt32::operator UInt32_t | ( | ) | const [inline] |
scsi_UInt32_t scsi_UInt32::m_data [private] |
Definition at line 256 of file scsi_types.h.
1.5.6