![]() |
Avionics
Dropship Simulator
|
#include <Nullable.h>
Public Member Functions | |
Nullable () | |
Nullable (T value) | |
Nullable (const Nullable &other) | |
T | operator= (T value) |
Used in copy-constructor below, see comment on copy constructor. More... | |
bool | operator== (const T value) |
bool | operator== (const Nullable &other) |
bool | operator!= (const Nullable &other) |
operator T () const | |
T | get () const |
bool | is_set () const |
void | reset () |
Private Member Functions | |
void | set (T value) |
Private Attributes | |
T | m_value |
bool | m_isSet |
Definition at line 6 of file Nullable.h.
Definition at line 19 of file Nullable.h.
Definition at line 23 of file Nullable.h.
Definition at line 27 of file Nullable.h.
|
inline |
|
inline |
|
inline |
Definition at line 74 of file Nullable.h.
Definition at line 65 of file Nullable.h.
|
inline |
Used in copy-constructor below, see comment on copy constructor.
Definition at line 45 of file Nullable.h.
|
inline |
Definition at line 51 of file Nullable.h.
Definition at line 56 of file Nullable.h.
|
inline |
Definition at line 91 of file Nullable.h.
|
inlineprivate |
Definition at line 12 of file Nullable.h.
|
private |
Definition at line 10 of file Nullable.h.
|
private |
Definition at line 9 of file Nullable.h.