mirror of
https://github.com/nasa/fprime.git
synced 2025-12-12 07:43:50 -06:00
28 lines
619 B
C++
28 lines
619 B
C++
/*
|
|
* TestCommand1Impl.hpp
|
|
*
|
|
* Created on: Mar 28, 2014
|
|
* Author: tcanham
|
|
*/
|
|
|
|
#ifndef TESTCOMMAND1IMPL_HPP_
|
|
#define TESTCOMMAND1IMPL_HPP_
|
|
|
|
#include <Autocoders/Python/test/tlm_string/TestComponentAc.hpp>
|
|
|
|
class TestTlmImpl: public Tlm::TestTlmComponentBase {
|
|
public:
|
|
#if FW_OBJECT_NAMES == 1
|
|
TestTlmImpl(const char* compName);
|
|
#else
|
|
TestTlmImpl();
|
|
#endif
|
|
void genTlm(Fw::TlmString& val);
|
|
virtual ~TestTlmImpl();
|
|
void init(void);
|
|
protected:
|
|
void aport_handler(NATIVE_INT_TYPE portNum, I32 arg4, F32 arg5, U8 arg6);
|
|
};
|
|
|
|
#endif /* TESTCOMMAND1IMPL_HPP_ */
|