F´ Flight Software - C/C++ Documentation NASA-v1.6.0
A framework for building embedded system applications to NASA flight quality standards.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Empty.cpp
Go to the documentation of this file.
1// ======================================================================
2// \title Empty.cpp
3// \author tiffany
4// \brief cpp file for Empty component implementation class
5// ======================================================================
6
7
8#include "Empty.hpp"
9#include <FpConfig.hpp>
10
11
12// ----------------------------------------------------------------------
13// Construction, initialization, and destruction
14// ----------------------------------------------------------------------
15
16Empty ::
17 Empty(
18 const char *const compName
19 ) : EmptyComponentBase(compName)
20{
21
22}
23
24void Empty ::
25 init(
26 NATIVE_INT_TYPE instance
27 )
28{
29 EmptyComponentBase::init(instance);
30}
31
32Empty ::
33 ~Empty()
34{
35
36}
37
PlatformIntType NATIVE_INT_TYPE
Definition BasicTypes.h:51
C++-compatible configuration header for fprime configuration.