bullet3/examples/SharedMemory/SharedMemoryCommon.h

22 lines
448 B
C
Raw Normal View History

2015-05-29 22:38:32 +00:00
#ifndef SHARED_MEMORY_COMMON_H
#define SHARED_MEMORY_COMMON_H
#include "../CommonInterfaces/CommonMultiBodyBase.h"
class SharedMemoryCommon : public CommonExampleInterface
2015-05-29 22:38:32 +00:00
{
protected:
struct GUIHelperInterface* m_guiHelper;
2015-05-29 22:38:32 +00:00
public:
SharedMemoryCommon(GUIHelperInterface* helper)
: m_guiHelper(helper)
2015-05-29 22:38:32 +00:00
{
}
virtual void setSharedMemoryKey(int key) = 0;
virtual bool wantsTermination() = 0;
virtual bool isConnected() = 0;
2015-05-29 22:38:32 +00:00
};
#endif //