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

20 lines
432 B
C++

#ifndef TestLibrary_TestComponent_HPP
#define TestLibrary_TestComponent_HPP
#include <TestLibrary/TestComponent/TestComponentComponentAc.hpp>
namespace TestLibrary {
class TestComponent : public TestComponentComponentBase
{
public:
TestComponent(const char* name);
void init(const NATIVE_INT_TYPE instance);
~TestComponent();
private:
void schedIn_handler(NATIVE_INT_TYPE portNum, U32 context);
};
};
#endif