F´ Flight Software - C/C++ Documentation
devel
A framework for building embedded system applications to NASA flight quality standards.
|
#include <Fw/Types/DirectionEnumAc.hpp>
Public Types | |
enum | T { IN = 0 , OUT = 1 , INOUT = 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 | |
Direction () | |
Constructor (default value of IN) More... | |
Direction (const T e1) | |
Constructor (user-provided value) More... | |
Direction (const Direction &obj) | |
Copy constructor. More... | |
Direction & | operator= (const Direction &obj) |
Copy assignment operator (object) More... | |
Direction & | 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... | |
Direction states.
Definition at line 17 of file DirectionEnumAc.hpp.
typedef I32 Fw::Direction::SerialType |
The serial representation type.
Definition at line 28 of file DirectionEnumAc.hpp.
typedef T Fw::Direction::t |
For backwards compatibility.
Definition at line 41 of file DirectionEnumAc.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 DirectionEnumAc.hpp.
enum Fw::Direction::T |
The raw enum type.
Enumerator | |
---|---|
IN | In direction. |
OUT | Out direction. |
INOUT | In/Out direction. |
Definition at line 31 of file DirectionEnumAc.hpp.
|
inline |
Constructor (default value of IN)
Definition at line 63 of file DirectionEnumAc.hpp.
|
inline |
Constructor (user-provided value)
e1 | The raw enum value |
Definition at line 69 of file DirectionEnumAc.hpp.
|
inline |
Copy constructor.
obj | The source object |
Definition at line 77 of file DirectionEnumAc.hpp.
|
virtual |
Deserialize raw enum value from SerialType.
buffer | The serial buffer |
Implements Fw::Serializable.
Definition at line 63 of file DirectionEnumAc.cpp.
bool Fw::Direction::isValid | ( | ) | const |
Check raw enum value for validity.
Definition at line 48 of file DirectionEnumAc.cpp.
|
inline |
Conversion operator.
Definition at line 101 of file DirectionEnumAc.hpp.
|
inline |
Inequality operator.
Definition at line 113 of file DirectionEnumAc.hpp.
Copy assignment operator (object)
obj | The source object |
Definition at line 19 of file DirectionEnumAc.cpp.
Copy assignment operator (raw enum)
e1 | The enum value |
Definition at line 26 of file DirectionEnumAc.cpp.
|
inline |
Equality operator.
Definition at line 107 of file DirectionEnumAc.hpp.
|
virtual |
Serialize raw enum value to SerialType.
buffer | The serial buffer |
Implements Fw::Serializable.
Definition at line 54 of file DirectionEnumAc.cpp.
T Fw::Direction::e |
The raw enum value.
Definition at line 163 of file DirectionEnumAc.hpp.