Robin Mueller
d00cb6d4a5
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
13 lines
382 B
C++
13 lines
382 B
C++
#ifndef LINUX_DEVICES_SCEXDLEPARSER_H_
|
|
#define LINUX_DEVICES_SCEXDLEPARSER_H_
|
|
|
|
#include <fsfw/globalfunctions/DleParser.h>
|
|
|
|
class ScexDleParser : public DleParser {
|
|
public:
|
|
ScexDleParser(SimpleRingBuffer& decodeRingBuf, DleEncoder& decoder, BufPair encodedBuf,
|
|
BufPair decodedBuf, UserHandler handler, void* args);
|
|
};
|
|
|
|
#endif /* LINUX_DEVICES_SCEXDLEPARSER_H_ */
|