19 lines
431 B
C++
19 lines
431 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;
|
|
|
|
private:
|
|
MessageQueueIF *commandQueue = nullptr;
|
|
};
|
|
|
|
#endif /*HOUSEKEEPINGMOCK_H_*/
|