1
0
forked from fsfw/fsfw
Files
action
container
contrib
controller
coordinates
datalinklayer
datapool
ControllerSet.cpp
ControllerSet.h
DataPool.cpp
DataPool.h
DataPoolAdmin.cpp
DataPoolAdmin.h
DataPoolParameterWrapper.cpp
DataPoolParameterWrapper.h
DataSet.cpp
DataSet.h
DataSetIF.h
HkSwitchHelper.cpp
HkSwitchHelper.h
PIDReader.h
PIDReaderList.h
PoolEntry.cpp
PoolEntry.h
PoolEntryIF.h
PoolRawAccess.cpp
PoolRawAccess.h
PoolVarList.h
PoolVariable.h
PoolVariableIF.h
PoolVector.h
devicehandlers
events
fdir
globalfunctions
health
internalError
ipc
memory
modes
monitoring
objectmanager
osal
parameters
power
pus
returnvalues
rmap
serialize
serviceinterface
storagemanager
subsystem
tasks
tcdistribution
thermal
timemanager
tmstorage
tmtcpacket
tmtcservices
.gitignore
LICENSE
NOTICE
framework.mk
fsfw/datapool/ControllerSet.h
Ulrich Mohr 575f70ba03 updating code from Flying Laptop
This is the framework of Flying Laptop OBSW version A.13.0.
2018-07-12 16:29:32 +02:00

16 lines
272 B
C++

#ifndef CONTROLLERSET_H_
#define CONTROLLERSET_H_
#include <framework/datapool/DataSet.h>
class ControllerSet :public DataSet {
public:
ControllerSet();
virtual ~ControllerSet();
virtual void setToDefault() = 0;
void setInvalid();
};
#endif /* CONTROLLERSET_H_ */