mirror of
https://github.com/nasa/fprime.git
synced 2025-12-12 07:43:50 -06:00
23 lines
497 B
C++
23 lines
497 B
C++
/*
|
|
* TestTelemRecvImpl.hpp
|
|
*
|
|
* Created on: Mar 28, 2014
|
|
* Author: tcanham
|
|
*/
|
|
|
|
#ifndef TESTTEXTLOGIMPL_HPP_
|
|
#define TESTTEXTLOGIMPL_HPP_
|
|
|
|
#include <Autocoders/Python/test/time_get/TimeGetComponentAc.hpp>
|
|
|
|
class TimeGetTesterImpl: public TimeGet::TimeGetTesterComponentBase {
|
|
public:
|
|
TimeGetTesterImpl(const char* compName);
|
|
virtual ~TimeGetTesterImpl();
|
|
void init(void);
|
|
protected:
|
|
void test_time_get_handler();
|
|
};
|
|
|
|
#endif /* TESTTIMEIMPL_HPP_ */
|