diff --git a/examples/SharedMemory/SharedMemoryCommon.h b/examples/SharedMemory/SharedMemoryCommon.h new file mode 100644 index 000000000..e479acd33 --- /dev/null +++ b/examples/SharedMemory/SharedMemoryCommon.h @@ -0,0 +1,17 @@ +#ifndef SHARED_MEMORY_COMMON_H +#define SHARED_MEMORY_COMMON_H + +#include "../CommonInterfaces/CommonMultiBodyBase.h" + +class SharedMemoryCommon : public CommonMultiBodyBase +{ +public: + SharedMemoryCommon(GUIHelperInterface* helper) + :CommonMultiBodyBase(helper) + { + } + + virtual bool wantsTermination()=0; +}; +#endif// +