F´ Flight Software - C/C++ Documentation NASA-v1.6.0
A framework for building embedded system applications to NASA flight quality standards.
Loading...
Searching...
No Matches
Empty.hpp
Go to the documentation of this file.
1// ======================================================================
2// \title Empty.hpp
3// \author tiffany
4// \brief hpp file for Empty component implementation class
5// ======================================================================
6
7#ifndef Empty_HPP
8#define Empty_HPP
9
10#include "FppTest/component/empty/EmptyComponentAc.hpp"
11
12class Empty :
13 public EmptyComponentBase
14{
15
16 public:
17
18 // ----------------------------------------------------------------------
19 // Component construction, initialization, and destruction
20 // ----------------------------------------------------------------------
21
23 Empty(
24 const char* const compName
25 );
26
28 void init(
29 NATIVE_INT_TYPE instance = 0
30 );
31
33 ~Empty();
34
35};
36
37#endif
PlatformIntType NATIVE_INT_TYPE
Definition BasicTypes.h:51
~Empty()
Destroy Empty object.
Definition Empty.cpp:33
void init(NATIVE_INT_TYPE instance=0)
Initialize Empty object.
Definition Empty.cpp:25