#include <Typed_SV_Message.h>
Collaboration diagram for ACE_Typed_SV_Message:
Public Methods | |
ACE_Typed_SV_Message (long type=0, int length=sizeof(T), int max_size=sizeof(T)) | |
ACE_Typed_SV_Message (const T &data, long type=0, int length=sizeof(T), int max_size=sizeof(T)) | |
~ACE_Typed_SV_Message (void) | |
long | type (void) const |
Get the type of the message. More... | |
void | type (long type) |
Set the type of the message. More... | |
int | length (void) const |
Get the length of the message. More... | |
void | length (int l) |
Set the length of the message. More... | |
int | max_size (void) const |
Get the maximum size of the message. More... | |
void | max_size (int m) |
Set the maximum size of the message. More... | |
T & | data (void) |
Get a pointer to the data in the message. More... | |
void | data (const T &data) |
Set a pointer to the data in the message. More... | |
void | dump (void) const |
Dump the state of an object. More... | |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. More... | |
Private Attributes | |
long | type_ |
Type of message. More... | |
int | length_ |
Length of this message. More... | |
int | max_ |
Maximum length of any message. More... | |
T | data_ |
Data stored in a message. More... |
|
|
|
|
|
|
|
Set a pointer to the data in the message.
|
|
Get a pointer to the data in the message.
|
|
Dump the state of an object.
|
|
Set the length of the message.
|
|
Get the length of the message.
|
|
Set the maximum size of the message.
|
|
Get the maximum size of the message.
|
|
Set the type of the message.
|
|
Get the type of the message.
|
|
Declare the dynamic allocation hooks.
|
|
Data stored in a message.
|
|
Length of this message.
|
|
Maximum length of any message.
|
|
Type of message.
|