/* * TestPrmImpl.hpp * * Created on: Mar 28, 2014 * Author: tcanham */ #ifndef TESTPARAMIMPL_HPP_ #define TESTPARAMIMPL_HPP_ #include class TestPrmImpl: public Prm::TestPrmComponentBase { public: #if FW_OBJECT_NAMES == 1 TestPrmImpl(const char* compName); #else TestPrmImpl(); #endif void genTlm(U32 val); virtual ~TestPrmImpl(); void init(void); void printParam(void); protected: void aport_handler(NATIVE_INT_TYPE portNum, I32 arg4, F32 arg5, U8 arg6); }; #endif /* TESTPARAMIMPL_HPP_ */