eive-obsw/unittest/mocks/HouseKeepingMock.h
Robin Mueller a7c1dafce5
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
added mutex protection for power switches
2022-03-03 19:39:36 +01:00

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_*/