mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 04:35:25 -06:00
* Remove FPP dependencies on native int types * Revise FpConfig * Fix errors in FpConfig * Revise types Add size type alias to Serializable Remove type aliases for generated code
17 lines
403 B
C++
17 lines
403 B
C++
#include <TestLibrary2/TestComponent/TestComponent.hpp>
|
|
|
|
namespace TestLibrary2 {
|
|
|
|
TestComponent ::TestComponent(const char* name) :
|
|
TestComponentComponentBase(name)
|
|
{}
|
|
|
|
void TestComponent ::init(const NATIVE_INT_TYPE instance) {
|
|
TestComponentComponentBase::init(instance);
|
|
}
|
|
|
|
TestComponent ::~TestComponent() {}
|
|
|
|
void TestComponent ::schedIn_handler(NATIVE_INT_TYPE portNum, U32 context) {}
|
|
};
|