F´ Flight Software - C/C++ Documentation
NASA-v1.6.0
A framework for building embedded system applications to NASA flight quality standards.
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
z
Functions
a
b
c
d
g
h
i
m
r
s
t
v
w
Variables
Typedefs
a
b
c
d
e
f
h
l
o
p
r
s
t
w
Enumerations
Enumerator
a
b
f
h
i
n
o
p
s
v
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
z
~
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
z
~
Variables
a
b
d
e
f
g
h
i
l
m
n
p
q
r
s
t
u
v
w
Typedefs
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
w
Related Functions
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
Functions
i
m
p
s
u
Variables
Typedefs
Enumerations
Enumerator
c
d
e
f
m
o
p
r
s
t
v
Macros
_
a
c
d
f
g
h
i
k
l
m
p
r
s
t
u
v
►
F´ Flight Software - C/C++ Documentation
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
QueueString.hpp
Go to the documentation of this file.
1
#ifndef OS_QUEUE_STRING_TYPE_HPP
2
#define OS_QUEUE_STRING_TYPE_HPP
3
4
#include <
Fw/Types/BasicTypes.hpp
>
5
#include <
Fw/Types/StringType.hpp
>
6
#include <
FpConfig.hpp
>
7
8
namespace
Os
{
9
10
class
QueueString
:
public
Fw::StringBase
{
11
public
:
12
13
QueueString
(
const
char
* src);
14
QueueString
(
const
StringBase
& src);
15
QueueString
(
const
QueueString
& src);
16
QueueString
();
17
QueueString
&
operator=
(
const
QueueString
& other);
18
QueueString
&
operator=
(
const
StringBase
& other);
19
QueueString
&
operator=
(
const
char
* other);
20
~QueueString
();
21
22
const
char
*
toChar
()
const
;
23
NATIVE_UINT_TYPE
getCapacity
()
const
;
24
25
private
:
26
char
m_buf[
FW_QUEUE_NAME_MAX_SIZE
];
27
};
28
}
29
30
#endif
StringType.hpp
Declares ISF string base class.
Os
Definition:
File.cpp:7
Fw::StringBase::StringBase
StringBase()
Definition:
StringType.cpp:22
Fw::StringBase
Definition:
StringType.hpp:23
Os::QueueString::toChar
const char * toChar() const
get pointer to char buffer
Definition:
QueueString.cpp:48
Os::QueueString
Definition:
QueueString.hpp:10
NATIVE_UINT_TYPE
unsigned int NATIVE_UINT_TYPE
native unsigned integer type declaration
Definition:
BasicTypes.hpp:30
Os::QueueString::getCapacity
NATIVE_UINT_TYPE getCapacity() const
return size of buffer
Definition:
QueueString.cpp:52
Os::QueueString::QueueString
QueueString()
default constructor
Definition:
QueueString.cpp:18
Os::QueueString::operator=
QueueString & operator=(const QueueString &other)
assignment operator
Definition:
QueueString.cpp:22
FpConfig.hpp
ISF configuration file.
Os::QueueString::~QueueString
~QueueString()
destructor
Definition:
QueueString.cpp:45
BasicTypes.hpp
Declares ISF basic types.
FW_QUEUE_NAME_MAX_SIZE
#define FW_QUEUE_NAME_MAX_SIZE
Max size of message queue name.
Definition:
FpConfig.hpp:211
Os
QueueString.hpp
Generated by
1.8.17