F´ Flight Software - C/C++ Documentation
devel
A framework for building embedded system applications to NASA flight quality standards.
|
Status returned by the send call. More...
#include <Drv/ByteStreamDriverModel/SendStatusEnumAc.hpp>
Public Types | |
enum | T { SEND_OK = 0 , SEND_RETRY = 1 , SEND_ERROR = 2 } |
The raw enum type. More... | |
enum | { SERIALIZED_SIZE = sizeof(SerialType) , NUM_CONSTANTS = 3 } |
typedef I32 | SerialType |
The serial representation type. More... | |
typedef T | t |
For backwards compatibility. More... | |
Public Types inherited from Fw::Serializable | |
using | SizeType = NATIVE_UINT_TYPE |
Public Member Functions | |
SendStatus () | |
Constructor (default value of SEND_OK) More... | |
SendStatus (const T e1) | |
Constructor (user-provided value) More... | |
SendStatus (const SendStatus &obj) | |
Copy constructor. More... | |
SendStatus & | operator= (const SendStatus &obj) |
Copy assignment operator (object) More... | |
SendStatus & | operator= (T e1) |
Copy assignment operator (raw enum) More... | |
operator T () const | |
Conversion operator. More... | |
bool | operator== (T e1) const |
Equality operator. More... | |
bool | operator!= (T e1) const |
Inequality operator. More... | |
bool | isValid () const |
Check raw enum value for validity. More... | |
Fw::SerializeStatus | serialize (Fw::SerializeBufferBase &buffer) const |
Serialize raw enum value to SerialType. More... | |
Fw::SerializeStatus | deserialize (Fw::SerializeBufferBase &buffer) |
Deserialize raw enum value from SerialType. More... | |
Public Attributes | |
T | e |
The raw enum value. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from Fw::Serializable | |
Serializable () | |
Default constructor. More... | |
virtual | ~Serializable () |
destructor More... | |
Status returned by the send call.
Definition at line 17 of file SendStatusEnumAc.hpp.
typedef I32 Drv::SendStatus::SerialType |
The serial representation type.
Definition at line 28 of file SendStatusEnumAc.hpp.
typedef T Drv::SendStatus::t |
For backwards compatibility.
Definition at line 41 of file SendStatusEnumAc.hpp.
anonymous enum |
Enumerator | |
---|---|
SERIALIZED_SIZE | The size of the serial representation. |
NUM_CONSTANTS | The number of enumerated constants. |
Definition at line 49 of file SendStatusEnumAc.hpp.
enum Drv::SendStatus::T |
The raw enum type.
Enumerator | |
---|---|
SEND_OK | Send worked as expected. |
SEND_RETRY | Data send should be retried. |
SEND_ERROR | Send error occurred retrying may succeed. |
Definition at line 31 of file SendStatusEnumAc.hpp.
|
inline |
Constructor (default value of SEND_OK)
Definition at line 63 of file SendStatusEnumAc.hpp.
|
inline |
Constructor (user-provided value)
e1 | The raw enum value |
Definition at line 69 of file SendStatusEnumAc.hpp.
|
inline |
Copy constructor.
obj | The source object |
Definition at line 77 of file SendStatusEnumAc.hpp.
|
virtual |
Deserialize raw enum value from SerialType.
buffer | The serial buffer |
Implements Fw::Serializable.
Definition at line 63 of file SendStatusEnumAc.cpp.
bool Drv::SendStatus::isValid | ( | ) | const |
Check raw enum value for validity.
Definition at line 48 of file SendStatusEnumAc.cpp.
|
inline |
Conversion operator.
Definition at line 101 of file SendStatusEnumAc.hpp.
|
inline |
Inequality operator.
Definition at line 113 of file SendStatusEnumAc.hpp.
SendStatus & Drv::SendStatus::operator= | ( | const SendStatus & | obj | ) |
Copy assignment operator (object)
obj | The source object |
Definition at line 19 of file SendStatusEnumAc.cpp.
SendStatus & Drv::SendStatus::operator= | ( | T | e1 | ) |
Copy assignment operator (raw enum)
e1 | The enum value |
Definition at line 26 of file SendStatusEnumAc.cpp.
|
inline |
Equality operator.
Definition at line 107 of file SendStatusEnumAc.hpp.
|
virtual |
Serialize raw enum value to SerialType.
buffer | The serial buffer |
Implements Fw::Serializable.
Definition at line 54 of file SendStatusEnumAc.cpp.
T Drv::SendStatus::e |
The raw enum value.
Definition at line 163 of file SendStatusEnumAc.hpp.