mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 00:44:37 -06:00
17 lines
602 B
C++
17 lines
602 B
C++
// ======================================================================
|
|
// \title Empty.cpp
|
|
// \author tiffany
|
|
// \brief cpp file for Empty component implementation class
|
|
// ======================================================================
|
|
|
|
#include "Empty.hpp"
|
|
#include <Fw/FPrimeBasicTypes.hpp>
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Construction, initialization, and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
Empty ::Empty(const char* const compName) : EmptyComponentBase(compName) {}
|
|
|
|
Empty ::~Empty() {}
|