v6.0.0 #729

Merged
mohr merged 668 commits from development into master 2023-02-23 13:42:49 +01:00
5 changed files with 17 additions and 1 deletions
Showing only changes of commit 269a3052ca - Show all commits

View File

@ -1,4 +1,6 @@
target_sources(${LIB_FSFW_NAME} PRIVATE CfdpMessage.cpp CfdpDistributor.cpp)
target_sources(
${LIB_FSFW_NAME} PRIVATE CfdpMessage.cpp CfdpDistributor.cpp
CfdpSourceHandler.cpp CfdpDestHandler.cpp)
# CfdpDistributor.cpp CfdpHandler.cpp
add_subdirectory(pdu)

View File

@ -0,0 +1 @@
#include "CfdpDestHandler.h"

View File

@ -0,0 +1,6 @@
#ifndef FSFW_CFDP_CFDPDESTHANDLER_H
#define FSFW_CFDP_CFDPDESTHANDLER_H
class CfdpDestHandler {};
#endif // FSFW_CFDP_CFDPDESTHANDLER_H

View File

@ -0,0 +1 @@
#include "CfdpSourceHandler.h"

View File

@ -0,0 +1,6 @@
#ifndef FSFW_CFDP_CFDPSOURCEHANDLER_H
#define FSFW_CFDP_CFDPSOURCEHANDLER_H
class CfdpSourceHandler {};
#endif // FSFW_CFDP_CFDPSOURCEHANDLER_H