diff --git a/.gitignore b/.gitignore index eb461072..a5a8d2ba 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ # PyCharm and CLion -/.idea/* +.idea/* !/.idea/runConfigurations !/.idea/cmake.xml !/.idea/codeStyles diff --git a/src/fsfw/cfdp/handler/SourceHandler.cpp b/src/fsfw/cfdp/handler/SourceHandler.cpp index 513b25f3..7fac0f81 100644 --- a/src/fsfw/cfdp/handler/SourceHandler.cpp +++ b/src/fsfw/cfdp/handler/SourceHandler.cpp @@ -1 +1,4 @@ #include "SourceHandler.h" + +SourceHandler::SourceHandler(SourceHandlerParams params) { +} diff --git a/src/fsfw/cfdp/handler/SourceHandler.h b/src/fsfw/cfdp/handler/SourceHandler.h index 319cf258..5db71d36 100644 --- a/src/fsfw/cfdp/handler/SourceHandler.h +++ b/src/fsfw/cfdp/handler/SourceHandler.h @@ -1,6 +1,14 @@ #ifndef FSFW_CFDP_CFDPSOURCEHANDLER_H #define FSFW_CFDP_CFDPSOURCEHANDLER_H -class SourceHandler {}; +struct SourceHandlerParams { + +}; + +class SourceHandler { +public: + SourceHandler(SourceHandlerParams params); +private: +}; #endif // FSFW_CFDP_CFDPSOURCEHANDLER_H diff --git a/unittests/CatchFactory.cpp b/unittests/CatchFactory.cpp index 37c62f94..62c2bc13 100644 --- a/unittests/CatchFactory.cpp +++ b/unittests/CatchFactory.cpp @@ -32,7 +32,7 @@ void Factory::produceFrameworkObjects(void* args) { setStaticFrameworkObjectIds(); new EventManager(objects::EVENT_MANAGER, 120); new HealthTable(objects::HEALTH_TABLE); - new InternalErrorReporter(objects::INTERNAL_ERROR_REPORTER); + new InternalErrorReporter(objects::INTERNAL_ERROR_REPORTER, 20, false, 5.0); { PoolManager::LocalPoolConfig poolCfg = {{100, 16}, {50, 32}, {25, 64}, {15, 128}, {5, 1024}};