mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-06 16:56:45 +08:00
26 lines
416 B
C++
26 lines
416 B
C++
/**
|
|
* \file libipc/mem.h
|
|
* \author mutouyun (orz@orzz.org)
|
|
* \brief Global memory management.
|
|
*/
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <algorithm>
|
|
#include <type_traits>
|
|
|
|
#include "libipc/imp/aligned.h"
|
|
#include "libipc/imp/uninitialized.h"
|
|
#include "libipc/imp/byte.h"
|
|
#include "libipc/imp/detect_plat.h"
|
|
|
|
#include "libipc/export.h"
|
|
|
|
namespace ipc {
|
|
namespace mem {
|
|
|
|
|
|
|
|
} // namespace mem
|
|
} // namespace ipc
|