mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-07 01:06:45 +08:00
18 lines
361 B
C
18 lines
361 B
C
/**
|
|
* @file libpmr/def.h
|
|
* @author mutouyun (orz@orzz.org)
|
|
* @brief Define the trivial configuration information for memory resources.
|
|
* @date 2022-11-13
|
|
*/
|
|
#pragma once
|
|
|
|
#define LIBPMR_ pmr
|
|
#define LIBPMR_NAMESPACE_BEG_ namespace LIBPMR_ {
|
|
#define LIBPMR_NAMESPACE_END_ }
|
|
|
|
LIBPMR_NAMESPACE_BEG_
|
|
|
|
/// @brief Constants.
|
|
|
|
LIBPMR_NAMESPACE_END_
|