start implementing metadata parser

This commit is contained in:
Robin Müller 2023-07-21 16:12:17 +02:00
parent 4c9e731113
commit 045054fce0
Signed by: muellerr
GPG Key ID: 407F9B00F858F270
2 changed files with 5 additions and 1 deletions

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:
};