init
This commit is contained in:
14
server/robot/SwapQueue.h
Normal file
14
server/robot/SwapQueue.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
template<typename T>
|
||||
class CSwapQueue : public CQueueList<T>
|
||||
{
|
||||
public:
|
||||
CSwapQueue()
|
||||
{
|
||||
setLock(&m_Lock);
|
||||
}
|
||||
|
||||
private:
|
||||
CCSLock m_Lock;
|
||||
};
|
||||
Reference in New Issue
Block a user