From c28afd22421bbe59b85770d7be3581aac8e5663c Mon Sep 17 00:00:00 2001 From: = <=> Date: Fri, 29 May 2015 15:38:32 -0700 Subject: [PATCH] add missing files --- examples/SharedMemory/SharedMemoryCommon.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 examples/SharedMemory/SharedMemoryCommon.h 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// +