Files
softbus_daemon/src/core/memory/LockFreeQueue.h
flowerstonezl 993581b2a4 log
2026-03-10 17:56:36 +08:00

8 lines
121 B
C++

#pragma once
// Placeholder for a lock-free ring queue.
class LockFreeQueue {
public:
LockFreeQueue() = default;
};