mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-07 01:06:45 +08:00
20 lines
324 B
C++
Executable File
20 lines
324 B
C++
Executable File
/**
|
|
* @file def.h
|
|
* @author mutouyun (orz@orzz.org)
|
|
* @brief Define the trivial configuration information
|
|
* @date 2022-02-27
|
|
*/
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
#define LIBIPC_NAMESPACE_BEG_ namespace ipc {
|
|
#define LIBIPC_NAMESPACE_END_ }
|
|
|
|
LIBIPC_NAMESPACE_BEG_
|
|
|
|
// constants
|
|
|
|
LIBIPC_NAMESPACE_END_
|