OMOTE/Platformio/HAL/MPMCQueueInterface.hpp
2023-09-14 06:34:04 +02:00

9 lines
No EOL
191 B
C++

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