add missing files

This commit is contained in:
=
2015-05-29 15:38:32 -07:00
parent fcb5dac567
commit c28afd2242

View File

@@ -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//