Robin Mueller
d2337a769c
All checks were successful
fsfw/fsfw example hosted/pipeline/head This commit looks good
16 lines
440 B
C++
16 lines
440 B
C++
#ifndef POLLINGSEQUENCE_POLLINGSEQUENCFACTORY_H_
|
|
#define POLLINGSEQUENCE_POLLINGSEQUENCFACTORY_H_
|
|
|
|
#include <fsfw/returnvalues/HasReturnvaluesIF.h>
|
|
|
|
#include "OBSWConfig.h"
|
|
|
|
class FixedTimeslotTaskIF;
|
|
|
|
namespace pst {
|
|
ReturnValue_t pollingSequenceExamples(FixedTimeslotTaskIF* thisSequence);
|
|
ReturnValue_t pollingSequenceDevices(FixedTimeslotTaskIF* thisSequence);
|
|
} // namespace pst
|
|
|
|
#endif /* POLLINGSEQUENCE_POLLINGSEQUENCFACTORY_H_ */
|