Rob Bocchino c02f35145e
Remove FPP dependencies on native int types (#2548)
* 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
2024-03-04 19:34:23 -08:00

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) {}
};