2023-03-30 12:12:06 -07:00

165 lines
3.7 KiB
C++

// ======================================================================
// \title EEnumAc.hpp
// \author Generated by fpp-to-cpp
// \brief hpp file for E enum
// ======================================================================
#ifndef M_EEnumAc_HPP
#define M_EEnumAc_HPP
#include "FpConfig.hpp"
#include "Fw/Types/Serializable.hpp"
#include "Fw/Types/String.hpp"
namespace M {
class E :
public Fw::Serializable
{
public:
// ----------------------------------------------------------------------
// Types
// ----------------------------------------------------------------------
//! The serial representation type
typedef I32 SerialType;
//! The raw enum type
enum T {
X = 1,
Y = 2,
};
//! For backwards compatibility
typedef T t;
public:
// ----------------------------------------------------------------------
// Constants
// ----------------------------------------------------------------------
enum {
//! The size of the serial representation
SERIALIZED_SIZE = sizeof(SerialType),
//! The number of enumerated constants
NUM_CONSTANTS = 2,
};
public:
// ----------------------------------------------------------------------
// Constructors
// ----------------------------------------------------------------------
//! Constructor (default value of X)
E()
{
this->e = X;
}
//! Constructor (user-provided value)
E(
const T e //!< The raw enum value
)
{
this->e = e;
}
//! Copy constructor
E(
const E& obj //!< The source object
)
{
this->e = obj.e;
}
public:
// ----------------------------------------------------------------------
// Operators
// ----------------------------------------------------------------------
//! Copy assignment operator (object)
E& operator=(
const E& obj //!< The source object
);
//! Copy assignment operator (raw enum)
E& operator=(
T e //!< The enum value
);
//! Conversion operator
operator T() const
{
return this->e;
}
//! Equality operator
bool operator==(T e) const
{
return this->e == e;
}
//! Inequality operator
bool operator!=(T e) const
{
return !(*this == e);
}
#ifdef BUILD_UT
//! Ostream operator
friend std::ostream& operator<<(
std::ostream& os, //!< The ostream
const E& obj //!< The object
);
#endif
public:
// ----------------------------------------------------------------------
// Member functions
// ----------------------------------------------------------------------
//! Check raw enum value for validity
bool isValid() const;
//! Serialize raw enum value to SerialType
Fw::SerializeStatus serialize(
Fw::SerializeBufferBase& buffer //!< The serial buffer
) const;
//! Deserialize raw enum value from SerialType
Fw::SerializeStatus deserialize(
Fw::SerializeBufferBase& buffer //!< The serial buffer
);
#if FW_SERIALIZABLE_TO_STRING || FW_ENABLE_TEXT_LOGGING || BUILD_UT
//! Convert enum to string
void toString(
Fw::StringBase& sb //!< The StringBase object to hold the result
) const;
#endif
public:
// ----------------------------------------------------------------------
// Member variables
// ----------------------------------------------------------------------
//! The raw enum value
T e;
};
}
#endif