mirror of
https://github.com/nasa/fprime.git
synced 2026-04-13 02:27:38 -05:00
30 lines
614 B
C++
30 lines
614 B
C++
// ======================================================================
|
|
// \title Empty.cpp
|
|
// \author tiffany
|
|
// \brief cpp file for Empty component implementation class
|
|
// ======================================================================
|
|
|
|
|
|
#include "Empty.hpp"
|
|
#include <FpConfig.hpp>
|
|
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Construction, initialization, and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
Empty ::
|
|
Empty(
|
|
const char *const compName
|
|
) : EmptyComponentBase(compName)
|
|
{
|
|
|
|
}
|
|
|
|
Empty ::
|
|
~Empty()
|
|
{
|
|
|
|
}
|
|
|