Robin Mueller
8054694763
- Generators will now copy csv files into tmtc folder - Bump fsfwgen dependency, some bugfixes - Rerun formatter - Rerun generator scripts
15 lines
377 B
C++
15 lines
377 B
C++
#ifndef HOUSEKEEPINGMOCK_H_
|
|
#define HOUSEKEEPINGMOCK_H_
|
|
|
|
#include <fsfw/housekeeping/AcceptsHkPacketsIF.h>
|
|
#include <fsfw/ipc/MessageQueueIF.h>
|
|
#include <fsfw/objectmanager/SystemObject.h>
|
|
|
|
class HouseKeepingMock : public SystemObject, public AcceptsHkPacketsIF {
|
|
public:
|
|
HouseKeepingMock();
|
|
|
|
virtual MessageQueueId_t getHkQueue() const;
|
|
};
|
|
|
|
#endif /*HOUSEKEEPINGMOCK_H_*/ |