/
redgpu
/
bullet
Обзор
Документация
Войти
/
redgpu
/
bullet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/SharedMemory/SharedMemoryCommon.h
21 строка
448 B
erwincoumans
Code-style consistency improvement:
24 сен 2018, 00:17
24 сен 2018, 00:17
ab8f169
Код
Авторство
О чём код?
#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 //