2022-10-20 17:25:27 +02:00
|
|
|
|
|
|
|
#ifndef DUMMIES_SADEPLOYMENT_H_
|
|
|
|
#define DUMMIES_SADEPLOYMENT_H_
|
|
|
|
|
|
|
|
#include <fsfw/devicehandlers/DeviceHandlerBase.h>
|
|
|
|
|
2022-10-21 11:51:44 +02:00
|
|
|
#include "SaDeploymentDummy.h"
|
|
|
|
|
2022-10-20 17:25:27 +02:00
|
|
|
class SaDeplDummy : public SystemObject, public ExecutableObjectIF {
|
|
|
|
public:
|
|
|
|
SaDeplDummy(object_id_t objectId);
|
|
|
|
virtual ~SaDeplDummy();
|
|
|
|
|
|
|
|
ReturnValue_t performOperation(uint8_t opCode) override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* DUMMIES_SADEPLOYMENT_H_ */
|