----------------------------------------------------------------------------- Constructor -----------------------------------------------------------------------------
| 533 | // Constructor |
| 534 | //----------------------------------------------------------------------------- |
| 535 | Group::AssociationCommand::AssociationCommand |
| 536 | ( |
| 537 | uint8 const _length, |
| 538 | uint8 const* _data |
| 539 | ) |
| 540 | { |
| 541 | m_data = new uint8[_length]; |
| 542 | memcpy( m_data, _data, _length ); |
| 543 | } |
| 544 | |
| 545 | //----------------------------------------------------------------------------- |
| 546 | // <Group::AssociationCommand::AssociationCommand> |
nothing calls this directly
no outgoing calls
no test coverage detected