missing more comments (#4463)

This commit is contained in:
kevin-f-ortega 2025-11-20 08:20:17 -08:00 committed by GitHub
parent 081a2f8654
commit ba95054a24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -146,6 +146,7 @@ class RawTime final : public RawTimeInterface {
//! that value in its config/ folder.
//!
//! \param buffer The buffer to serialize the contents into.
//! \param mode Endianness to use when serializing to buffer.
//! \return Fw::SerializeStatus indicating the result of the serialization.
Fw::SerializeStatus serializeTo(Fw::SerialBufferBase& buffer,
Fw::Endianness mode = Fw::Endianness::BIG) const override;
@ -161,6 +162,7 @@ class RawTime final : public RawTimeInterface {
//! that value in its config/ folder.
//!
//! \param buffer The buffer to deserialize the contents from.
//! \param mode Endianness to use when deserializing from the buffer.
//! \return Fw::SerializeStatus indicating the result of the deserialization.
Fw::SerializeStatus deserializeFrom(Fw::SerialBufferBase& buffer,
Fw::Endianness mode = Fw::Endianness::BIG) override;