2020-10-29 12:42:29 +01:00
|
|
|
#include "CatchDefinitions.h"
|
2020-10-20 17:11:23 +02:00
|
|
|
#include <fsfw/objectmanager/ObjectManagerIF.h>
|
|
|
|
|
|
|
|
StorageManagerIF* tglob::getIpcStoreHandle() {
|
|
|
|
if(objectManager != nullptr) {
|
|
|
|
return objectManager->get<StorageManagerIF>(objects::IPC_STORE);
|
|
|
|
} else {
|
|
|
|
sif::error << "Global object manager uninitialized" << std::endl;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|