mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 22:00:05 +00:00
48f6484b3d
pass on useFixedBase to URDF loader in PhysicsServer
22 lines
436 B
C++
22 lines
436 B
C++
#ifndef POSIX_SHARED_MEMORY_H
|
|
#define POSIX_SHARED_MEMORY_H
|
|
|
|
#include "SharedMemoryInterface.h"
|
|
|
|
|
|
|
|
class PosixSharedMemory : public SharedMemoryInterface
|
|
{
|
|
|
|
struct PosixSharedMemoryInteralData* m_internalData;
|
|
|
|
public:
|
|
PosixSharedMemory();
|
|
virtual ~PosixSharedMemory();
|
|
|
|
virtual void* allocateSharedMemory(int key, int size, bool allowCreation);
|
|
virtual void releaseSharedMemory(int key, int size);
|
|
};
|
|
|
|
#endif //
|