2022-02-16 18:15:06 +01:00
|
|
|
#ifndef HOUSEKEEPINGMOCK_H_
|
|
|
|
#define HOUSEKEEPINGMOCK_H_
|
|
|
|
|
|
|
|
#include <fsfw/housekeeping/AcceptsHkPacketsIF.h>
|
|
|
|
#include <fsfw/ipc/MessageQueueIF.h>
|
2022-03-04 15:14:02 +01:00
|
|
|
#include <fsfw/objectmanager/SystemObject.h>
|
2022-02-16 18:15:06 +01:00
|
|
|
|
|
|
|
class HouseKeepingMock : public SystemObject, public AcceptsHkPacketsIF {
|
|
|
|
public:
|
|
|
|
HouseKeepingMock();
|
|
|
|
|
|
|
|
virtual MessageQueueId_t getHkQueue() const;
|
2022-06-16 07:00:09 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
MessageQueueIF *commandQueue = nullptr;
|
2022-02-16 18:15:06 +01:00
|
|
|
};
|
|
|
|
|
2022-06-16 07:00:09 +02:00
|
|
|
#endif /*HOUSEKEEPINGMOCK_H_*/
|