----------------------------------------------------------------------------- Get the number of bytes that would be added by a call to AppendValue -----------------------------------------------------------------------------
| 640 | // Get the number of bytes that would be added by a call to AppendValue |
| 641 | //----------------------------------------------------------------------------- |
| 642 | uint8 const CommandClass::GetAppendValueSize |
| 643 | ( |
| 644 | string const& _value |
| 645 | )const |
| 646 | { |
| 647 | uint8 size; |
| 648 | ValueToInteger( _value, NULL, &size ); |
| 649 | return size; |
| 650 | } |
| 651 | |
| 652 | //----------------------------------------------------------------------------- |
| 653 | // <CommandClass::ValueToInteger> |
nothing calls this directly
no outgoing calls
no test coverage detected