Ulrich Mohr
3400c538b3
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
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_*/ |