|  | F´ Flight Software - C/C++ Documentation
    devel
    A framework for building embedded system applications to NASA flight quality standards. | 
Open and closed states. More...
#include <Fw/Types/OpenEnumAc.hpp>
 
  
| Public Types | |
| enum | T { CLOSED = 0 , OPEN = 1 } | 
| The raw enum type.  More... | |
| enum | { SERIALIZED_SIZE = sizeof(SerialType) , NUM_CONSTANTS = 2 } | 
| typedef I32 | SerialType | 
| The serial representation type.  More... | |
| typedef T | t | 
| For backwards compatibility.  More... | |
| Public Member Functions | |
| Open () | |
| Constructor (default value of CLOSED)  More... | |
| Open (const T e1) | |
| Constructor (user-provided value)  More... | |
| Open (const Open &obj) | |
| Copy constructor.  More... | |
| Open & | operator= (const Open &obj) | 
| Copy assignment operator (object)  More... | |
| Open & | 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... | |
Open and closed states.
Definition at line 17 of file OpenEnumAc.hpp.
| typedef I32 Fw::Open::SerialType | 
The serial representation type.
Definition at line 28 of file OpenEnumAc.hpp.
| typedef T Fw::Open::t | 
For backwards compatibility.
Definition at line 39 of file OpenEnumAc.hpp.
| anonymous enum | 
| Enumerator | |
|---|---|
| SERIALIZED_SIZE | The size of the serial representation. | 
| NUM_CONSTANTS | The number of enumerated constants. | 
Definition at line 47 of file OpenEnumAc.hpp.
| enum Fw::Open::T | 
The raw enum type.
| Enumerator | |
|---|---|
| CLOSED | Closed state. | 
| OPEN | Open state. | 
Definition at line 31 of file OpenEnumAc.hpp.
| 
 | inline | 
Constructor (default value of CLOSED)
Definition at line 61 of file OpenEnumAc.hpp.
| 
 | inline | 
Constructor (user-provided value)
| e1 | The raw enum value | 
Definition at line 67 of file OpenEnumAc.hpp.
| 
 | inline | 
| 
 | virtual | 
Deserialize raw enum value from SerialType.
| buffer | The serial buffer | 
Implements Fw::Serializable.
Definition at line 63 of file OpenEnumAc.cpp.
| bool Fw::Open::isValid | ( | ) | const | 
Check raw enum value for validity.
Definition at line 48 of file OpenEnumAc.cpp.
| 
 | inline | 
Conversion operator.
Definition at line 99 of file OpenEnumAc.hpp.
| 
 | inline | 
Inequality operator.
Definition at line 111 of file OpenEnumAc.hpp.
Copy assignment operator (object)
| obj | The source object | 
Definition at line 19 of file OpenEnumAc.cpp.
Copy assignment operator (raw enum)
| e1 | The enum value | 
Definition at line 26 of file OpenEnumAc.cpp.
| 
 | inline | 
Equality operator.
Definition at line 105 of file OpenEnumAc.hpp.
| 
 | virtual | 
Serialize raw enum value to SerialType.
| buffer | The serial buffer | 
Implements Fw::Serializable.
Definition at line 54 of file OpenEnumAc.cpp.
| T Fw::Open::e | 
The raw enum value.
Definition at line 161 of file OpenEnumAc.hpp.