Class ByteArray

File: src/inet/common/ByteArray.msg

C++ definition

Class that carries raw bytes. For example, used by RawPacket and some TCP queues.

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Fields:

Name Type Description
data char[]

Source code:

//
// Class that carries raw bytes.
// For example, used by ~RawPacket and some TCP queues.
//
class ByteArray
{
    @customize(true);
    char data[];
}