Robin Mueller
a7c1dafce5
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
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_*/ |