'using namespace std;' added.

This commit is contained in:
Roland Jax
2014-11-22 20:42:11 +01:00
parent b593af967a
commit 4a1033122c
33 changed files with 709 additions and 646 deletions
+3 -1
View File
@@ -23,6 +23,8 @@
#include <list>
#include <pthread.h>
using namespace std;
/**
* @brief queue class template for all kinds data types with exclusiv lock.
*/
@@ -117,7 +119,7 @@ public:
private:
/** the queue itself */
std::list<T> m_queue;
list<T> m_queue;
/** mutex variable for exclusive lock */
pthread_mutex_t m_mutex;