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
20 lines
432 B
C++
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
|