16 lines
378 B
C
16 lines
378 B
C
|
#ifndef HOUSEKEEPINGMOCK_H_
|
||
|
#define HOUSEKEEPINGMOCK_H_
|
||
|
|
||
|
#include <fsfw/housekeeping/AcceptsHkPacketsIF.h>
|
||
|
#include <fsfw/objectmanager/SystemObject.h>
|
||
|
#include <fsfw/ipc/MessageQueueIF.h>
|
||
|
|
||
|
class HouseKeepingMock : public SystemObject, public AcceptsHkPacketsIF {
|
||
|
public:
|
||
|
HouseKeepingMock();
|
||
|
|
||
|
virtual MessageQueueId_t getHkQueue() const;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif /*HOUSEKEEPINGMOCK_H_*/
|