mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-06 16:56:45 +08:00
17 lines
251 B
C
17 lines
251 B
C
/**
|
|
* @file libconcur/queue.h
|
|
* @author mutouyun (orz@orzz.org)
|
|
* @brief Define concurrent queue.
|
|
* @date 2022-11-19
|
|
*/
|
|
#pragma once
|
|
|
|
#include "libconcur/def.h"
|
|
#include "libconcur/element.h"
|
|
|
|
LIBCONCUR_NAMESPACE_BEG_
|
|
|
|
|
|
|
|
LIBCONCUR_NAMESPACE_END_
|