OMOTE/Platformio/HAL/MPMCQueueInterface.hpp

9 lines
191 B
C++
Raw Normal View History

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