mirror of
https://github.com/nasa/fpp.git
synced 2025-12-12 04:41:37 -06:00
152 lines
2.5 KiB
C++
Vendored
152 lines
2.5 KiB
C++
Vendored
// ======================================================================
|
|
// \title SSerializableAc.cpp
|
|
// \author Generated by fpp-to-cpp
|
|
// \brief cpp file for S struct
|
|
// ======================================================================
|
|
|
|
#include "Fw/Types/Assert.hpp"
|
|
#include "SSerializableAc.hpp"
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Constructors
|
|
// ----------------------------------------------------------------------
|
|
|
|
S ::
|
|
S() :
|
|
Serializable(),
|
|
m_x{}
|
|
{
|
|
|
|
}
|
|
|
|
S ::
|
|
S(U32 x) :
|
|
Serializable(),
|
|
m_x(x)
|
|
{
|
|
|
|
}
|
|
|
|
S ::
|
|
S(const S& obj) :
|
|
Serializable(),
|
|
m_x(obj.m_x)
|
|
{
|
|
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Operators
|
|
// ----------------------------------------------------------------------
|
|
|
|
S& S ::
|
|
operator=(const S& obj)
|
|
{
|
|
if (this == &obj) {
|
|
return *this;
|
|
}
|
|
|
|
set(obj.m_x);
|
|
return *this;
|
|
}
|
|
|
|
bool S ::
|
|
operator==(const S& obj) const
|
|
{
|
|
return (this->m_x == obj.m_x);
|
|
}
|
|
|
|
bool S ::
|
|
operator!=(const S& obj) const
|
|
{
|
|
return !(*this == obj);
|
|
}
|
|
|
|
#ifdef BUILD_UT
|
|
|
|
std::ostream& operator<<(std::ostream& os, const S& obj) {
|
|
Fw::String s;
|
|
obj.toString(s);
|
|
os << s.toChar();
|
|
return os;
|
|
}
|
|
|
|
#endif
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Member functions
|
|
// ----------------------------------------------------------------------
|
|
|
|
Fw::SerializeStatus S ::
|
|
serializeTo(
|
|
Fw::SerialBufferBase& buffer,
|
|
Fw::Endianness mode
|
|
) const
|
|
{
|
|
Fw::SerializeStatus status;
|
|
|
|
status = buffer.serializeFrom(this->m_x, mode);
|
|
if (status != Fw::FW_SERIALIZE_OK) {
|
|
return status;
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
Fw::SerializeStatus S ::
|
|
deserializeFrom(
|
|
Fw::SerialBufferBase& buffer,
|
|
Fw::Endianness mode
|
|
)
|
|
{
|
|
Fw::SerializeStatus status;
|
|
|
|
status = buffer.deserializeTo(this->m_x, mode);
|
|
if (status != Fw::FW_SERIALIZE_OK) {
|
|
return status;
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
FwSizeType S ::
|
|
serializedSize() const
|
|
{
|
|
FwSizeType size = 0;
|
|
size += sizeof(U32);
|
|
return size;
|
|
}
|
|
|
|
#if FW_SERIALIZABLE_TO_STRING
|
|
|
|
void S ::
|
|
toString(Fw::StringBase& sb) const
|
|
{
|
|
Fw::String tmp;
|
|
sb = "( ";
|
|
|
|
// Format x
|
|
sb += "x = ";
|
|
tmp.format("%" PRIu32 "", this->m_x);
|
|
sb += tmp;
|
|
sb += " )";
|
|
}
|
|
|
|
#endif
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Setter functions
|
|
// ----------------------------------------------------------------------
|
|
|
|
void S ::
|
|
set(U32 x)
|
|
{
|
|
this->m_x = x;
|
|
}
|
|
|
|
void S ::
|
|
set_x(U32 x)
|
|
{
|
|
this->m_x = x;
|
|
}
|