fsfw/src/fsfw/housekeeping/GeneratesHousekeepingIF.h

16 lines
381 B
C
Raw Normal View History

2023-07-11 14:57:17 +02:00
#pragma once
2023-07-14 14:11:22 +02:00
#include <fsfw/tmtc/FsfwProtocolHeader.h>
2023-07-11 14:57:17 +02:00
#include "HousekeepingHelper.h"
class GeneratesHousekeepingIF {
2023-07-14 14:11:22 +02:00
public:
static const uint8_t INTERFACE_ID = CLASS_ID::GENERATES_HOUSEKEEPING;
enum Functions : FsfwProtocolHeader::FunctionType_t { REPORT };
virtual ~GeneratesHousekeepingIF() = default;
2023-07-11 14:57:17 +02:00
2023-07-14 14:11:22 +02:00
virtual HousekeepingHelper* getHousekeepingHelper() = 0;
2023-07-11 14:57:17 +02:00
};