fprime/Autocoders/Python/test/passive/PassiveC2Impl.hpp
2021-07-14 12:54:01 -07:00

26 lines
453 B
C++

#ifndef PASSIVEC2IMPL_HPP
#define PASSIVEC2IMPL_HPP
#include <Autocoders/Python/test/passive/PassiveC2ComponentAc.hpp>
namespace Passive {
class C2Impl : public C2Base {
public:
// Only called by derived class
C2Impl(const char* compName);
~C2Impl();
private:
// downcall for input ports
I32 Void_Void_handler();
I32 Msg1_Msg1_handler(U32 arg1, I32 arg2, F32 arg3);
};
};
#endif