mirror of
https://github.com/nasa/fprime.git
synced 2025-12-12 18:31: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
24 lines
588 B
C++
24 lines
588 B
C++
/*
|
|
* TestCommand1Impl.hpp
|
|
*
|
|
* Created on: Mar 28, 2014
|
|
* Author: tcanham
|
|
*/
|
|
|
|
#ifndef TESTCOMMAND1IMPL_HPP_
|
|
#define TESTCOMMAND1IMPL_HPP_
|
|
|
|
#include <Autocoders/Python/test/event_string/TestComponentAc.hpp>
|
|
|
|
class TestLogImpl: public Somewhere::TestLogComponentBase {
|
|
public:
|
|
TestLogImpl(const char* compName);
|
|
virtual ~TestLogImpl();
|
|
void init();
|
|
void sendEvent(I32 arg1, Fw::LogStringArg& arg2, U8 arg3);
|
|
protected:
|
|
void aport_handler(NATIVE_INT_TYPE portNum, I32 arg4, F32 arg5, U8 arg6);
|
|
};
|
|
|
|
#endif /* TESTCOMMAND1IMPL_HPP_ */
|