16 lines
232 B
C++
16 lines
232 B
C++
#ifndef SHARED_MEMORY_OWNERSHIP_HPP
|
|
#define SHARED_MEMORY_OWNERSHIP_HPP
|
|
|
|
namespace osrm::storage
|
|
{
|
|
|
|
enum class Ownership
|
|
{
|
|
Container,
|
|
View,
|
|
External
|
|
};
|
|
} // namespace osrm::storage
|
|
|
|
#endif // SHARED_MEMORY_OWNERSHIP_HPP
|