F´ Flight Software - C/C++ Documentation
NASA-v2.1.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
f
g
h
i
k
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
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
f
g
h
i
k
l
m
n
p
r
s
t
u
v
Functions
f
i
m
p
s
u
Variables
Typedefs
Enumerations
Enumerator
c
d
f
m
p
r
s
t
Macros
_
a
c
d
f
g
h
i
k
l
m
n
p
r
s
t
u
v
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Deprecate.hpp
Go to the documentation of this file.
1
// deprecate.hpp:
2
//
3
// A minor implementation of compile-time deprecation for the fprime framework.
4
5
#ifndef FW_DEPRECATE_HPP
6
#define FW_DEPRECATE_HPP
7
8
#ifdef __GNUC__
9
#define DEPRECATED(func, message) func __attribute__ ((deprecated(message)))
10
#else
11
#warning "No implementation of DEPRECATED for given compiler. Pleas check for use of DEPRECATED() functions"
12
#define DEPRECATED(func) func
13
#endif
14
15
#endif // FW_DEPRECATE_HPP
Fw
Deprecate.hpp
Generated by
1.8.17