Files
softbus_daemon/src/core/memory/LockFreeQueue.h

8 lines
121 B
C
Raw Normal View History

2026-03-10 17:56:36 +08:00
#pragma once
// Placeholder for a lock-free ring queue.
class LockFreeQueue {
public:
LockFreeQueue() = default;
};