/** * @file * @brief * * @author Thomas Escher */ #ifndef SHARED_FRAME_H #define SHARED_FRAME_H #include "slam6d/frame.h" #include #include // hide the boost namespace and shorten others namespace { namespace ip = boost::interprocess; // the segment manager providing the allocations typedef ip::managed_shared_memory::segment_manager SegmentManager; } typedef ip::allocator FrameAllocator; typedef ip::vector FrameVector; #endif //SHARED_FRAME_H