CFDP SOURCE handler #157

Merged
muellerr merged 107 commits from cfdp-source-handler into develop 2023-10-19 10:59:55 +02:00
2 changed files with 5 additions and 1 deletions
Showing only changes of commit 045054fce0 - Show all commits

View File

@ -1 +1,3 @@
#include "MetadataParser.h"
cfdp::MetadataParser::MetadataParser(MetadataPduReader& reader) {}

View File

@ -1,10 +1,12 @@
#pragma once
#include "fsfw/cfdp/pdu/MetadataPduReader.h"
namespace cfdp {
class MetadataParser {
public:
MetadataParser();
explicit MetadataParser(MetadataPduReader& reader);
private:
};