mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 23:38:06 -06:00
* lestarch: stripping out FW_OBJECT_NAMES from Autocoder tests * lestarch: scrubbing FW_OBJECT_NAMES from templates * lestarch: scrubbing FW_OBJECT_NAMES from templates dir * lestarch: fixing polytype toString usage * lestarch: fixing more FW_OBJECT_NAMES
27 lines
754 B
C++
27 lines
754 B
C++
/*
|
|
* TestTelemRecvImpl.hpp
|
|
*
|
|
* Created on: Mar 28, 2014
|
|
* Author: tcanham
|
|
*/
|
|
|
|
#ifndef TESTPARAMRECVIMPL_HPP_
|
|
#define TESTPARAMRECVIMPL_HPP_
|
|
|
|
#include <Autocoders/Python/test/param_tester/ParamTestComponentAc.hpp>
|
|
|
|
class TestParamSourceImpl: public Prm::ParamTesterComponentBase {
|
|
public:
|
|
TestParamSourceImpl(const char* compName);
|
|
virtual ~TestParamSourceImpl();
|
|
void init();
|
|
void setPrm(I32 val);
|
|
protected:
|
|
Fw::ParamValid paramGetPort_handler(NATIVE_INT_TYPE portNum, FwPrmIdType id, Fw::ParamBuffer &val);
|
|
void paramSetPort_handler(NATIVE_INT_TYPE portNum, FwPrmIdType id, Fw::ParamBuffer &val);
|
|
private:
|
|
Fw::ParamBuffer m_prm;
|
|
};
|
|
|
|
#endif /* TESTCOMMANDSOURCEIMPL_HPP_ */
|