18 lines
204 B
C++
18 lines
204 B
C++
|
#ifndef SHARED_MEMORY_OWNERSHIP_HPP
|
||
|
#define SHARED_MEMORY_OWNERSHIP_HPP
|
||
|
|
||
|
namespace osrm
|
||
|
{
|
||
|
namespace storage
|
||
|
{
|
||
|
|
||
|
enum class Ownership
|
||
|
{
|
||
|
Container,
|
||
|
View
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif // SHARED_MEMORY_OWNERSHIP_HPP
|