fsfw/src/fsfw/cfdp/handler/MetadataParser.h

15 lines
200 B
C
Raw Normal View History

2023-07-21 16:09:52 +02:00
#pragma once
2023-07-21 16:12:17 +02:00
#include "fsfw/cfdp/pdu/MetadataPduReader.h"
2023-07-21 16:09:52 +02:00
namespace cfdp {
class MetadataParser {
public:
2023-07-21 16:12:17 +02:00
explicit MetadataParser(MetadataPduReader& reader);
2023-07-21 16:09:52 +02:00
private:
2023-07-21 16:35:05 +02:00
2023-07-21 16:09:52 +02:00
};
} // namespace cfdp