1
0
mirror of https://gitlab.com/obbart/universal_robots_ros_driver.git synced 2026-04-09 17:40:47 +02:00

Removed "using namespace" from header

This commit is contained in:
Felix Mauch
2019-09-25 07:14:01 +02:00
parent 62146a49ae
commit 3d315ea5cf

View File

@@ -33,9 +33,6 @@ namespace ur_driver
{
namespace comm
{
// TODO: Remove these!!!
using namespace moodycamel;
/*!
* \brief Parent class for for arbitrary consumers.
*
@@ -328,7 +325,7 @@ private:
IConsumer<_package_type>* consumer_;
std::string name_;
INotifier& notifier_;
BlockingReaderWriterQueue<std::unique_ptr<_package_type>> queue_;
moodycamel::BlockingReaderWriterQueue<std::unique_ptr<_package_type>> queue_;
std::atomic<bool> running_;
std::thread pThread_, cThread_;