mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-06 16:56:45 +08:00
16 lines
200 B
C++
16 lines
200 B
C++
#pragma once
|
|
|
|
#include "circ_elem_array.h"
|
|
|
|
namespace ipc {
|
|
namespace circ {
|
|
|
|
template <typename T>
|
|
class queue {
|
|
private:
|
|
elem_array<sizeof(T)> elems_;
|
|
};
|
|
|
|
} // namespace circ
|
|
} // namespace ipc
|