#include <Typed_SV_Message.h>
Collaboration diagram for ACE_Typed_SV_Message< T >:

Public Member Functions | |
| 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. | |
| void | type (long type) |
| Set the type of the message. | |
| int | length (void) const |
| Get the length of the message. | |
| void | length (int l) |
| Set the length of the message. | |
| int | max_size (void) const |
| Get the maximum size of the message. | |
| void | max_size (int m) |
| Set the maximum size of the message. | |
| T & | data (void) |
| Get a pointer to the data in the message. | |
| void | data (const T &data) |
| Set a pointer to the data in the message. | |
| void | dump (void) const |
| Dump the state of an object. | |
Public Attributes | |
| ACE_ALLOC_HOOK_DECLARE | |
| Declare the dynamic allocation hooks. | |
Private Attributes | |
| long | type_ |
| Type of message. | |
| int | length_ |
| Length of this message. | |
| int | max_ |
| Maximum length of any message. | |
| T | data_ |
| Data stored in a message. | |
Definition at line 34 of file Typed_SV_Message.h.
|
||||||||||||||||||||
|
Definition at line 11 of file Typed_SV_Message.inl. References ACE_TRACE, ACE_Typed_SV_Message< T >::length(), and ACE_Typed_SV_Message< T >::max_size().
|
|
||||||||||||||||||||||||
|
Definition at line 22 of file Typed_SV_Message.inl. References ACE_TRACE, ACE_Typed_SV_Message< T >::length(), and ACE_Typed_SV_Message< T >::max_size().
|
|
||||||||||
|
Definition at line 35 of file Typed_SV_Message.inl. References ACE_TRACE.
00036 {
00037 ACE_TRACE ("ACE_Typed_SV_Message<T>::~ACE_Typed_SV_Message");
00038 }
|
|
||||||||||
|
Set a pointer to the data in the message.
Definition at line 90 of file Typed_SV_Message.inl. References ACE_TRACE.
|
|
||||||||||
|
Get a pointer to the data in the message.
Definition at line 83 of file Typed_SV_Message.inl. References ACE_TRACE.
|
|
||||||||||
|
Dump the state of an object.
Definition at line 21 of file Typed_SV_Message.cpp. References ACE_TRACE.
00022 {
00023 #if defined (ACE_HAS_DUMP)
00024 ACE_TRACE ("ACE_Typed_SV_Message<T>::dump");
00025 #endif /* ACE_HAS_DUMP */
00026 }
|
|
||||||||||
|
Set the length of the message.
Definition at line 62 of file Typed_SV_Message.inl. References ACE_TRACE.
|
|
||||||||||
|
Get the length of the message.
Definition at line 55 of file Typed_SV_Message.inl. References ACE_TRACE. Referenced by ACE_Typed_SV_Message< T >::ACE_Typed_SV_Message().
|
|
||||||||||
|
Set the maximum size of the message.
Definition at line 76 of file Typed_SV_Message.inl. References ACE_TRACE.
|
|
||||||||||
|
Get the maximum size of the message.
Definition at line 69 of file Typed_SV_Message.inl. References ACE_TRACE. Referenced by ACE_Typed_SV_Message< T >::ACE_Typed_SV_Message().
|
|
||||||||||
|
Set the type of the message.
Definition at line 48 of file Typed_SV_Message.inl. References ACE_TRACE.
|
|
||||||||||
|
Get the type of the message.
Definition at line 41 of file Typed_SV_Message.inl. References ACE_TRACE.
|
|
|||||
|
Declare the dynamic allocation hooks.
Definition at line 75 of file Typed_SV_Message.h. |
|
|||||
|
Data stored in a message.
Definition at line 88 of file Typed_SV_Message.h. |
|
|||||
|
Length of this message.
Definition at line 82 of file Typed_SV_Message.h. |
|
|||||
|
Maximum length of any message.
Definition at line 85 of file Typed_SV_Message.h. |
|
|||||
|
Type of message.
Definition at line 79 of file Typed_SV_Message.h. |
1.3.6