1
0
forked from fsfw/fsfw

some include fixes

This commit is contained in:
2021-01-03 14:33:17 +01:00
parent 2edf158312
commit 695a767164
5 changed files with 7 additions and 2 deletions

View File

@ -4,6 +4,8 @@
#include "../serviceinterface/ServiceInterfaceStream.h"
#include "../globalfunctions/arrayprinter.h"
#include <algorithm>
ConstStorageAccessor::ConstStorageAccessor(store_address_t storeId):
storeId(storeId) {}

View File

@ -2,6 +2,8 @@
#include "StorageManagerIF.h"
#include "../serviceinterface/ServiceInterfaceStream.h"
#include <algorithm>
StorageAccessor::StorageAccessor(store_address_t storeId):
ConstStorageAccessor(storeId) {
}