@brief Calculate the size needed for writeWithPadding() without allocating Returns the current data size without applying padding. The actual size after writeWithPadding() will be dst.size() (fills entire destination). @return Current size of encoded data (minimum required dst size)
| 116 | /// |
| 117 | /// @return Current size of encoded data (minimum required dst size) |
| 118 | size_t getMinimumSize() const FL_NOEXCEPT { return mEncodedData.size(); } |
| 119 | |
| 120 | /// @brief Destructor with debug logging |
| 121 | ~ChannelData(); |