9 lines
191 B
C++
9 lines
191 B
C++
|
#pragma once
|
||
|
#include "SPSCQueueInterface.hpp"
|
||
|
|
||
|
template <typename T>
|
||
|
class MPMCQueueInterface: public SPSCQueueInterface<T>
|
||
|
{
|
||
|
public:
|
||
|
bool push(T obj, bool overwrite = false);
|
||
|
};
|