fprime/Autocoders/Python/test/partition/PartitionImpl.hpp
2019-02-20 16:15:33 -08:00

22 lines
490 B
C++

#ifndef PARTITION_PARTITION_IMPL_HPP
#define PARTITION_PARTITION_IMPL_HPP
#include <Autocoders/Python/test/partition/PartitionPartitionComponentAc.hpp>
namespace Partition {
class PartitionImpl : public PartitionBase {
public:
PartitionImpl(const char* compName);
~PartitionImpl(void);
private:
// downcall for input port
I32 inputPort1_Serialize_handler(Fw::SerializeBufferBase &Buffer);
I32 inputPort2_Serialize_handler(Fw::SerializeBufferBase &Buffer);
};
};
#endif