CFDP SOURCE handler #157

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

View File

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

View File

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