fsfw/datapool/ControllerSet.h

16 lines
253 B
C
Raw Normal View History

#ifndef CONTROLLERSET_H_
#define CONTROLLERSET_H_
2020-08-13 20:53:35 +02:00
#include "DataSet.h"
class ControllerSet :public DataSet {
public:
ControllerSet();
virtual ~ControllerSet();
virtual void setToDefault() = 0;
void setInvalid();
};
#endif /* CONTROLLERSET_H_ */