27 lines
614 B
C++
27 lines
614 B
C++
#ifndef FSFW_DATAPOOLLOCAL_ACCESSLOCALPOOLF_H_
|
|
#define FSFW_DATAPOOLLOCAL_ACCESSLOCALPOOLF_H_
|
|
|
|
//#include "LocalDataPoolManager.h"
|
|
#include <fsfw/ipc/MutexIF.h>
|
|
|
|
class LocalDataPoolManager;
|
|
|
|
class AccessPoolManagerIF {
|
|
public:
|
|
virtual ~AccessPoolManagerIF() {};
|
|
|
|
virtual MutexIF* getLocalPoolMutex() = 0;
|
|
|
|
/**
|
|
* Can be used to get a handle to the local data pool manager.
|
|
* This function is protected because it should only be used by the
|
|
* class imlementing the interface.
|
|
*/
|
|
virtual LocalDataPoolManager* getHkManagerHandle() = 0;
|
|
|
|
protected:
|
|
|
|
};
|
|
|
|
#endif /* FSFW_DATAPOOLLOCAL_ACCESSLOCALPOOLF_H_ */
|