F´ Flight Software - C/C++ Documentation
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
c
d
e
f
g
i
m
p
r
s
t
v
w
Variables
b
c
d
f
l
m
o
p
s
t
z
Typedefs
a
b
c
d
e
f
g
h
l
p
s
t
u
Enumerations
c
f
o
p
s
Enumerator
a
b
c
e
f
h
i
m
n
o
p
r
s
t
u
v
w
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
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
Typedefs
a
c
e
i
p
s
t
u
Enumerations
b
c
d
f
g
h
i
l
m
o
p
r
s
t
u
w
Enumerator
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
z
Related Functions
a
b
c
d
e
f
g
h
l
o
p
r
s
t
u
v
Files
File List
File Members
All
_
a
b
c
d
f
g
h
i
l
m
p
q
r
s
t
u
v
Functions
c
i
m
s
u
Variables
Typedefs
b
c
d
f
i
m
q
r
s
t
u
Enumerations
Enumerator
a
b
c
d
f
g
h
p
r
s
t
Macros
_
a
c
d
f
h
l
m
p
r
s
u
v
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
OutputPortBase.hpp
Go to the documentation of this file.
1
#ifndef FW_OUTPUT_PORT_BASE_HPP
2
#define FW_OUTPUT_PORT_BASE_HPP
3
4
#include <
Fw/FPrimeBasicTypes.hpp
>
5
#include <
Fw/Obj/ObjBase.hpp
>
6
#include <
Fw/Port/InputPortBase.hpp
>
7
#include <
Fw/Types/Serializable.hpp
>
8
9
namespace
Fw
{
10
11
class
OutputPortBase
:
public
PortBase
{
12
public
:
13
#if FW_PORT_SERIALIZATION == 1
14
void
registerSerialPort(
InputPortBase
* port);
// !< register a port for serialized calls
15
SerializeStatus
invokeSerial(
16
SerializeBufferBase
& buffer);
// !< invoke the port with a serialized version of the call
17
#endif
18
19
protected
:
20
OutputPortBase
();
// constructor
21
virtual
~OutputPortBase
();
// destructor
22
void
init
()
override
;
23
24
#if FW_OBJECT_TO_STRING == 1
25
const
char
* getToStringFormatString()
override
;
26
#endif
27
28
#if FW_PORT_SERIALIZATION == 1
29
Fw::InputPortBase
* m_serPort;
// !< pointer to port for serialized calls
30
#endif
31
private
:
32
// Disable constructors
33
OutputPortBase
(
OutputPortBase
*);
34
OutputPortBase
(
OutputPortBase
&);
35
OutputPortBase
& operator=(
OutputPortBase
&);
36
};
37
38
}
// namespace Fw
39
40
#endif
FPrimeBasicTypes.hpp
InputPortBase.hpp
Fw::SerializeStatus
SerializeStatus
forward declaration for string
Definition:
Serializable.hpp:14
Fw::OutputPortBase::init
void init() override
Definition:
OutputPortBase.cpp:20
Fw::SerializeBufferBase
Definition:
Serializable.hpp:70
Fw::OutputPortBase::OutputPortBase
OutputPortBase()
Definition:
OutputPortBase.cpp:9
ObjBase.hpp
Declarations for Fw::ObjBase and Fw::ObjRegistry.
Fw::OutputPortBase
Definition:
OutputPortBase.hpp:11
Fw::PortBase
Definition:
PortBase.hpp:16
Fw::OutputPortBase::~OutputPortBase
virtual ~OutputPortBase()
Definition:
OutputPortBase.cpp:18
Fw
Definition:
FppConstantsAc.hpp:121
Fw::InputPortBase
Definition:
InputPortBase.hpp:12
Serializable.hpp
Fw
Port
OutputPortBase.hpp
Generated by
1.8.14