Robin Mueller
dc45c53e38
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
20 lines
405 B
C++
20 lines
405 B
C++
|
|
#ifndef DUMMIES_SADEPLOYMENT_H_
|
|
#define DUMMIES_SADEPLOYMENT_H_
|
|
|
|
#include <fsfw/devicehandlers/DeviceHandlerBase.h>
|
|
|
|
#include "SaDeploymentDummy.h"
|
|
|
|
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_ */
|