mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 13:54:34 -06:00
26 lines
586 B
C++
26 lines
586 B
C++
/*
|
|
* TestPrmImpl.hpp
|
|
*
|
|
* Created on: Mar 28, 2014
|
|
* Author: tcanham
|
|
*/
|
|
|
|
#ifndef TESTPARAMIMPL_HPP_
|
|
#define TESTPARAMIMPL_HPP_
|
|
|
|
#include <Autocoders/Python/test/param_string/TestComponentAc.hpp>
|
|
#include <Fw/Prm/PrmString.hpp>
|
|
|
|
class TestPrmImpl: public Prm::TestPrmComponentBase {
|
|
public:
|
|
TestPrmImpl(const char* compName);
|
|
void genTlm(U32 val);
|
|
virtual ~TestPrmImpl();
|
|
void init();
|
|
void printParam();
|
|
protected:
|
|
void aport_handler(FwIndexType portNum, I32 arg4, F32 arg5, U8 arg6);
|
|
};
|
|
|
|
#endif /* TESTPARAMIMPL_HPP_ */
|