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