Bump FSFW #31

Merged
muellerr merged 139 commits from bump-fsfw into develop 2023-12-18 13:16:28 +01: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:
};