odtone::mih::vendor_ie
// In header: </home/carlos/Projectos/odtone/inc/odtone/mih/types/vendor_ie.hpp> class vendor_ie { public: // construct/copy/destruct vendor_ie(); vendor_ie(const vendor_ie &); vendor_ie& operator=(const vendor_ie &); // public member functions uint32 id() const; buffer< uint8 > data(); void id(uint32); void data(const void *, size_t); bool serialize(iarchive &); void serialize(oarchive &); };
Define VENDOR_IE data type.
vendor_ie
public
construct/copy/destructvendor_ie();
Construct an empty Vendor_IE data type.
vendor_ie(const vendor_ie & lhs);
Construct a Vendor_IE data type from another Vendor_IE data type.
Parameters: |
|
vendor_ie& operator=(const vendor_ie & lhs);
Copy a Vendor_IE data type from another Vendor_IE data type.
Parameters: |
|
vendor_ie
public member functionsuint32 id() const;
Get the Vendor_IE type.
Returns: |
The Vendor_IE type. |
buffer< uint8 > data();
Get the Vendor_IE data.
Returns: |
The Vendor_IE data. |
void id(uint32 id);
Set the Vendor_IE type.
void data(const void * raw, size_t len);
Set the Vendor_IE data.
bool serialize(iarchive & ar);
Deserialize the Vendor_IE data type.
Parameters: |
|
void serialize(oarchive & ar);
Serialize the Vendor_IE data type.
Parameters: |
|