Files
fsfw/datapool/ControllerSet.h
T

16 lines
253 B
C++
Raw Normal View History

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