fsfw/src/fsfw/no_datapoollocal/internal/HasLocalDpIFUserAttorney.h
Ulrich Mohr ad4adc7cba
Some checks failed
fsfw/fsfw/pipeline/head There was a failure building this commit
breaking everything in preperation of new Datapool
2023-07-03 17:10:16 +02:00

16 lines
425 B
C++

#ifndef FSFW_DATAPOOLLOCAL_HASLOCALDPIFUSERATTORNEY_H_
#define FSFW_DATAPOOLLOCAL_HASLOCALDPIFUSERATTORNEY_H_
class HasLocalDataPoolIF;
class AccessPoolManagerIF;
class HasLocalDpIFUserAttorney {
private:
static AccessPoolManagerIF* getAccessorHandle(HasLocalDataPoolIF* clientIF);
friend class LocalPoolObjectBase;
friend class LocalPoolDataSetBase;
};
#endif /* FSFW_DATAPOOLLOCAL_HASLOCALDPIFUSERATTORNEY_H_ */