mirror of
https://github.com/nasa/fprime.git
synced 2025-12-16 00:46:54 -06:00
22 lines
490 B
C++
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
|