1
0
forked from fsfw/fsfw

fsfw compiles without datapoolglob folder

This commit is contained in:
2020-12-01 19:16:19 +01:00
parent e3de5ce777
commit 4d76bf24b5
20 changed files with 6 additions and 8 deletions

View File

@ -0,0 +1,15 @@
#ifndef FSFW_DATAPOOLGLOB_CONTROLLERSET_H_
#define FSFW_DATAPOOLGLOB_CONTROLLERSET_H_
#include "../datapoolglob/GlobalDataSet.h"
class ControllerSet :public GlobDataSet {
public:
ControllerSet();
virtual ~ControllerSet();
virtual void setToDefault() = 0;
void setInvalid();
};
#endif /* FSFW_DATAPOOLGLOB_CONTROLLERSET_H_ */