mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-07 01:06:45 +08:00
22 lines
410 B
C++
22 lines
410 B
C++
/**
|
|
* @file libimp/def.h
|
|
* @author mutouyun (orz@orzz.org)
|
|
* @brief Define the trivial configuration information
|
|
* @date 2022-04-23
|
|
*/
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
#define LIBIMP_ imp
|
|
#define LIBIMP_NAMESPACE_ :: LIBIMP_
|
|
#define LIBIMP_NAMESPACE_BEG_ namespace LIBIMP_ {
|
|
#define LIBIMP_NAMESPACE_END_ }
|
|
|
|
LIBIMP_NAMESPACE_BEG_
|
|
|
|
// constants
|
|
|
|
LIBIMP_NAMESPACE_END_
|