![]() |
F´ Flight Software - C/C++ Documentation
NASA-v2.1.0
A framework for building embedded system applications to NASA flight quality standards.
|
#include <Os/QueueString.hpp>
Public Member Functions | |
QueueString (const char *src) | |
char buffer constructor More... | |
QueueString (const StringBase &src) | |
copy constructor More... | |
QueueString (const QueueString &src) | |
copy constructor More... | |
QueueString (void) | |
default constructor More... | |
QueueString & | operator= (const QueueString &other) |
assignment operator More... | |
QueueString & | operator= (const StringBase &other) |
other string assignment operator More... | |
QueueString & | operator= (const char *other) |
char* assignment operator More... | |
~QueueString (void) | |
destructor More... | |
const char * | toChar (void) const |
get pointer to char buffer More... | |
NATIVE_UINT_TYPE | getCapacity (void) const |
return size of buffer More... | |
![]() | |
NATIVE_UINT_TYPE | length (void) const |
Get length of string. More... | |
const char * | operator+= (const char *src) |
Concatenate a char*. More... | |
const StringBase & | operator+= (const StringBase &src) |
Concatenate a StringBase. More... | |
bool | operator== (const StringBase &other) const |
Check for equality with StringBase. More... | |
bool | operator== (const char *other) const |
Check for equality with char*. More... | |
bool | operator!= (const StringBase &other) const |
Inequality with StringBase. More... | |
bool | operator!= (const char *other) const |
Inequality with char*. More... | |
StringBase & | operator= (const char *src) |
Assign char*. More... | |
StringBase & | operator= (const StringBase &src) |
Assign another StringBase. More... | |
void | format (const char *formatString,...) |
write formatted string to buffer More... | |
SerializeStatus | serialize (SerializeBufferBase &buffer) const |
serialization function More... | |
SerializeStatus | deserialize (SerializeBufferBase &buffer) |
deserialization function More... | |
Additional Inherited Members | |
![]() | |
StringBase (void) | |
virtual | ~StringBase (void) |
void | appendBuff (const char *buff, NATIVE_UINT_TYPE size) |
![]() | |
Serializable () | |
Default constructor. More... | |
virtual | ~Serializable () |
destructor More... | |
Definition at line 10 of file QueueString.hpp.
Os::QueueString::QueueString | ( | const char * | src | ) |
char buffer constructor
Definition at line 6 of file QueueString.cpp.
Os::QueueString::QueueString | ( | const StringBase & | src | ) |
copy constructor
Definition at line 10 of file QueueString.cpp.
Os::QueueString::QueueString | ( | const QueueString & | src | ) |
copy constructor
Definition at line 14 of file QueueString.cpp.
Os::QueueString::QueueString | ( | void | ) |
default constructor
Definition at line 18 of file QueueString.cpp.
Os::QueueString::~QueueString | ( | void | ) |
destructor
Definition at line 37 of file QueueString.cpp.
|
virtual |
QueueString & Os::QueueString::operator= | ( | const char * | other | ) |
char* assignment operator
Definition at line 32 of file QueueString.cpp.
QueueString & Os::QueueString::operator= | ( | const QueueString & | other | ) |
assignment operator
Definition at line 22 of file QueueString.cpp.
QueueString & Os::QueueString::operator= | ( | const StringBase & | other | ) |
other string assignment operator
Definition at line 27 of file QueueString.cpp.
|
virtual |
get pointer to char buffer
Implements Fw::StringBase.
Definition at line 40 of file QueueString.cpp.