mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 16:36:15 +03:00
22 lines
448 B
C++
22 lines
448 B
C++
#ifndef SHARED_MEMORY_COMMON_H
|
|
#define SHARED_MEMORY_COMMON_H
|
|
|
|
#include "../CommonInterfaces/CommonMultiBodyBase.h"
|
|
|
|
class SharedMemoryCommon : public CommonExampleInterface
|
|
{
|
|
protected:
|
|
struct GUIHelperInterface* m_guiHelper;
|
|
|
|
public:
|
|
SharedMemoryCommon(GUIHelperInterface* helper)
|
|
: m_guiHelper(helper)
|
|
{
|
|
}
|
|
|
|
virtual void setSharedMemoryKey(int key) = 0;
|
|
virtual bool wantsTermination() = 0;
|
|
virtual bool isConnected() = 0;
|
|
};
|
|
#endif //
|